:root {
  --white: #fff;
  --dark: #085263;
  --dark30: #cedde0;
	--dark50: #83a9b1;
  --dark70: #457e8a;
  --dark-yellow: #d3ba00;
  --FSXS: 14px;
  --FSS: 16px;
  --FSD: 18px;
  --FSM: 25px;
  --FSL: 35px;
  --FSXL: 50px;
  --nav-height-mobile: 72px;
  --nav-height-desktop: 85px;
  --width-mobile: 768px;
  --width-desktop-start: 1100px;
  --width-tablet: 1329px;
  --width-mobile-upper: 768px;
  --width-tablet-upper: 1329.5px;
  
	--font-primary: 'Livvic', system-ui, -apple-system, sans-serif;
  --font-fallback: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	
	--maxWidth: 1331px;
  --wrapWidth: 1190px;
}

@media(max-width: 1329px) {
  :root {
    --FSXS: 1.05vw;
    --FSS: 1.2vw;
    --FSD: 1.35vw;
    --FSM: 1.88vw;
    --FSL: 3.76vw;
    --FSXL: 5.79vw;
  }
}

@media (max-width: 768px) {
    :root {
      --FSXS: 3.33vw;
      --FSS: 4.1vw;
      --FSD: 4.1vw;
      --FSM: 5.13vw;
      --FSL: 7.69vw;
      --FSXL: 7.69vw;
    }
}

@font-face {
    font-family: livvic;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://growney.de/fonts/Livvic-Regular.ttf)format("truetype");
}

@font-face {
    font-family: livvic;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://growney.de/fonts/Livvic-Bold.ttf)format("truetype");
}

@font-face {
    font-family: livvic;
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(https://growney.de/fonts/Livvic-Italic.ttf)format("truetype");
}

@font-face {
    font-family: livvic;
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(https://growney.de/fonts/Livvic-BoldItalic.ttf)format("truetype");
}

html {
    scroll-behavior: smooth;
    font-family: livvic,system-ui,sans-serif;
    font-size: var(--FSD);
    line-height: 1.45em;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

:root {
    font-family: livvic,system-ui,sans-serif !important;
}

body {
  margin: 0;
  cursor: default;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  font-family: livvic,system-ui,sans-serif;
}

i, em {
  font-style: italic
}

strong {
  font-weight: 700;
}

nav ul {
  list-style: none;
}

q {
  quotes: none
}

blockquote {
  background: #f9f9f9;
  quotes: "\201C""\201D""\2018""\2019";
  text-indent: 1em;
  margin: 0
}

blockquote p:first-child {
  display: inline;
  font-weight: 700 !important;
  font-size: 18px !important;
  font-size: var(--FSD) !important
}

blockquote p:nth-child(2) {
  font-size: 14px !important;
  font-size: var(--FSXS) !important;
  text-indent: 0;
  margin-top: .3rem
}

blockquote::before {
  color: var(--dark);
  content: open-quote;
  font-size: 4em;
  line-height: .1em;
  vertical-align: -.4em
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  -ms-interpolation-mode: bicubic
}

a {
  text-decoration: underline;
  color: inherit;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  outline: 0;
  text-underline-offset: 0.2em;
  text-decoration-style: solid;
}

a:hover {
    text-decoration-color: var(--dark-yellow);
    color: var(--dark-yellow);
}

.hide {
  display: none
}

.grey_sec {
  background-color: var(--grey_bg)
}

.pt12 {
  padding-top: .9rem
}

.pt3em {
  padding-top: 3.2rem
}

.mb8px {
  margin-bottom: 8px
}

@media(max-width: 768px) {
  .pt2em, .pt12 {
    padding-top: 0
  }
}

html, body, .FSD {
  font-size: 18px;
  font-size: var(--FSD);
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  /*width: 86%*/
}

p {
  word-break: break-word
}

q {
  quotes: "„" "“"
}

.text-color, .text-default {
  color: #1f203d;
  color: var(--dark)
}

.text-white {
  color: #f5f7f9;
  color: var(--white)
}

.text-bold {
  font-weight: 700
}

.text-link {
  color: #39b9ff;
  color: var(--dark-yellow)
}

.text-on-hover-dark:hover {
  color: #1f203d;
  color: var(--dark)
}

.text-normal {
  font-size: 1em;
  line-height: 1.35em;
  font-weight: 400
}

.text-roboto-regular {
  font-weight: 400;
  --FSS: 16px;
}

.text-small {
  font-size: .875em
}

.text-smaller {
  font-size: .813em
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.bg-error-text {
  background-color: #ff3683;
  background-color: var(--red);
  color: #fff;
  color: var(--white)
}

hr {
  border: 0;
  clear: both;
  display: block;
  width: 100%;
  background: #1f203d no-repeat padding-box;
  background: var(--dark) no-repeat padding-box;
  height: 1px;
  opacity: .2
}

.text-paragraph h2, .text-paragraph-headline h2 {
  font-weight: 400;
  line-height: 1.2em;
  font-size: 40px;
  font-size: var(--FSXL)
}

.text-paragraph h3, .text-paragraph-headline h3 {
  font-weight: 400;
  line-height: 1.2em;
  font-size: var(--FSL)
}

.text-paragraph p:first-child {
  margin-top: 0
}

.column-fluid h1, .column-fluid h2 {
  width: 100%
}

.text-paragraph-headline h2 {
  font-size: 40px;
  font-size: var(--FSXL)
}

@media(max-width: 768px) {
  .text-small {
    font-size: .813em
  }
}

header, .section, .section-header {
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--FSL);
    font-weight: 400;
    line-height: 110%;
    margin: 0 0 1rem;
    word-wrap: break-word;
    text-transform: uppercase;
}

.header-title-first {
    display: inline;
    font-weight: 400;
}

.header-title-second {
    display: inline;
    font-weight: 700;
    font-style: italic;
}

.wrap {
  width: 1190px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap
}

.column {
  width: 48%
}

.column-fluid {
  width: 100%
}

.mob_on {
  display: none
}

.column_1_3 {
  width: 31%
}

.narrow_column {
  padding: 0 16.667%
}

.clearfix:before {
  content: "";
  display: table
}

.clearfix:after {
  content: "";
  display: table;
  clear: both
}

.grid, .grid-wrap {
  display: grid
}

.grid-wrap {
  width: 1190px
}

.grid-col-2 {
  grid-template-columns: 20% 4fr;
  grid-column-gap: 1em
}

.column-left {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 2
}

.column-right {
  grid-column-start: 2;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr
}

.column-left-social {
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}

.hint-logo {
  grid-template-columns: 60% 40%
}

.column-left-hint {
  grid-column-start: 1;
  grid-column-end: 2
}

.column-right-logo {
  grid-column-start: 2;
  grid-column-end: 3
}

.column_1_5 {
  width: 20%
}

.column_4_5 {
  width: 80%
}

.grid-ekomi {
  grid-template-columns: 1fr 2fr 1fr
}

.g-s-2, .g-m-2, .g-l-2 {
  grid-template-columns: 1fr 1fr
}

.grid-cost-table {
  grid-template-columns: 1fr 30% 40%
}

.soft-main-wrapper {
  width: 100%;
  max-width: 77.625rem;
  margin: 0 auto;
  padding: 0 .625rem
}

.first-container {
  margin-top: 90px
}

.soft-row {
  display: block;
  margin-left: -.625rem;
  margin-right: -.625rem
}

.soft-row:before {
  content: "";
  display: table
}

.soft-row:after {
  content: "";
  display: table;
  clear: both
}

.top-0 {
  padding-top: 0
}

.right-0 {
  padding-right: 0
}

.bottom-0 {
  padding-bottom: 0
}

.left-0 {
  padding-left: 0
}

.fluid {
  width: 100%;
  max-width: 100% !important
}

.relative {
  position: relative
}

.center {
  margin: 0 auto;
  float: none;
  text-align: center
}

.center p {
  text-align: center
}

.left, .left p {
  text-align: left
}

.float-left {
  float: left
}

.float-right {
  float: right
}

.mt05rem {
  margin-top: .5rem
}

.mt1rem {
  margin-top: 1rem
}

.mt2rem {
  margin-top: 2rem
}

.mt3rem {
  margin-top: 3rem
}

.mb1rem {
  margin-bottom: 1rem
}

.mb2rem {
  margin-bottom: 2rem
}

.mb3rem {
  margin-bottom: 3rem
}

.mt10 {
  margin-top: 10px
}

.mt20 {
  margin-top: 20px
}

.mt24 {
  margin-top: 24px
}

.mt40 {
  margin-top: 40px
}

.mt60 {
  margin-top: 60px
}

.mt1rem {
  margin-top: 1rem
}

.mt2rem {
  margin-top: 2rem
}

.mt3rem {
  margin-top: 3rem
}

.mt4rem {
  margin-top: 4rem
}

.mt5rem {
  margin-top: 5rem
}

.mb1rem {
  margin-bottom: 1rem
}

.mb16 {
  margin-bottom: 16px
}

.pb1rem {
  padding-bottom: 1rem
}

@media(max-width: 768px) {
  .narrow_column {
    padding: 0
  }
  .hide-for-small {
    display: none !important
  }
  .wrap, .grid-wrap {
    width: 90%
  }
  .column, .column_1_3 {
    width: 100%
  }
  .grid-ekomi {
    grid-template-columns: 1fr
  }
  .grid-cost-table {
    grid-template-columns: 60% 40%;
    margin-bottom: 36px
  }
  .mt60 {
    margin-top: 2rem
  }
  .column_1_5 {
    width: 49%
  }
}

@media(max-width: 1329px) {
  .wrap, .grid-wrap {
    width: 94%
  }
  .mob_off {
    display: none
  }
  .mob_on {
    display: block
  }    
  .column-left-social > div {
    text-align: center
  }
  .hint-logo {
    grid-template-columns: 1fr;
    grid-row-gap: 40px
  }
  .column-left-hint {
    grid-column-start: 1;
    grid-column-end: 2
  }  
}

@media screen and (min-width: 768px) and (max-width: 1329px) {
  .hide-for-medium {
    display: none !important
  }
  .g-m-1 {
    grid-template-columns: 1fr
  }
}

@media screen and (min-width: 1329.5px) {
  .hide-for-large {
    display: none !important
  }
  .g-l-1 {
    grid-template-columns: 1fr
  }
}

@media screen and (min-width: 1100px) {
  .hide-for-desktop {
    display: none !important
  }
}

.button_box {
  margin: 2.3rem 0 .5rem
}

.button_box a.btn {
  margin-bottom: .5rem
}

.btn {
  display: inline-block;
  --FSS: 16px;
  font-size: var(--FSS);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: .25em;
  padding: .7em 1.4em;
  min-width: 6em;
  border: 1px solid;
  margin-right: 2%;
  -webkit-transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease
}

.btn-imp {
  color: #fff;
  color: var(--white);
  background-color: #1f203d;
  background-color: var(--dark);
  border: solid 1px #1f203d;
  border: solid 1px var(--dark)
}

.btn-def {
  border: solid 1px #1f203d;
  border: solid 1px var(--dark);
  color: #1f203d;
  color: var(--dark);
  background-color: transparent
}

.btn-cost {
  --FSS: 16px;
  font-size: var(--FSS);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: .25em;
  padding: .7em 1.4em;
  min-width: 6em;
  margin-right: 2%;
  -webkit-transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  border: solid 1px #f5f7f9;
  border: solid 1px var(--white);
  color: #f5f7f9;
  color: var(--white);
  background-color: transparent
}

.btn-cost--active {
  background-color: #f5f7f9;
  background-color: var(--white);
  color: #1f203d;
  color: var(--dark)
}

.btn-wht {
  border: solid 1px #fff;
  border: solid 1px var(--white);
  color: #fff;
  color: var(--white)
}

.btn-imp:active, .btn-imp:focus, .btn-imp:hover, .btn-def:active, .btn-def:focus, .btn-def:hover, .btn-wht:active, .btn-wht:focus, .btn-wht:hover {
  border: solid 1px #39b9ff;
  border: solid 1px var(--dark-yellow);
  background-color: #39b9ff;
  background-color: var(--dark-yellow);
  color: #1f203d;
  color: var(--dark)
}

.btn-pdf .a {
  fill: none;
  stroke: #39b9ff;
  stroke: var(--dark-yellow);
  stroke-linejoin: round;
  stroke-miterlimit: 1.414;
  stroke-width: 1.5px;
  fill-rule: evenodd
}

.btn-pdf .b {
  fill: #39b9ff;
  fill: var(--dark-yellow)
}

.btn-pdf svg {
  width: 1.4rem;
  height: auto;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
  margin-bottom: -.3rem;
  margin-right: .4rem
}

.btn-pdf:hover .a {
  stroke: #1f203d;
  stroke: var(--dark)
}

.btn-pdf:hover .b {
  fill: #1f203d;
  fill: var(--dark)
}

.section-header .btn-imp {
  background-color: #fff;
  background-color: var(--white);
  border-color: #fff;
  border-color: var(--white);
  color: #1f203d;
  color: var(--dark)
}

.section-header .btn-imp:hover {
  border-color: #39b9ff !important;
  border-color: var(--dark-yellow) !important;
  background-color: #39b9ff !important;
  background-color: var(--dark-yellow) !important;
  color: #1f203d !important;
  color: var(--dark) !important
}

.section-header .btn-def {
  border-color: #fff;
  border-color: var(--white);
  color: #fff;
  color: var(--white)
}

.section-header .btn-def:hover {
  border-color: #39b9ff !important;
  border-color: var(--dark-yellow) !important;
  background-color: #39b9ff !important;
  background-color: var(--dark-yellow) !important;
  color: #1f203d !important;
  color: var(--dark) !important
}

.btn-arrow {
  display: inline-block;
  border: solid #1f203d;
  border: solid var(--dark);
  border-width: 0 2px 2px 0;
  padding: 4px
}

.btn-selected {
  background-color: #1f203d !important;
  background-color: var(--dark) !important;
  color: #fff !important;
  color: var(--white) !important
}

.item-active::after {
  content: "";
  position: absolute;
  top: 30%;
  margin-left: 8px;
  background-image: url(/icons/arrow_right.svg);
  width: 20px;
  height: 18px
}

@media(max-width: 768px) {
  .btn {
    margin-right: 0
  }
  .btn:last-child {
    margin-right: 0
  }
}

ol {
  padding-left: 1rem
}

ul {
  list-style: none;
  padding-left: .9rem;
  margin-left: 0
}

.bullet-list ul {
  font-weight: 700;
  padding-left: 1.8rem
}

.bullet-list ul li {
  padding-top: .5rem;
  padding-bottom: .5rem
}

.bullet-list ul li:before {
  content: "";
  background-image: url(/icons/check-bold.svg);
  background-size: 100% 100%;
  width: 1.073rem;
  height: .793rem;
  position: absolute;
  margin-left: -1.8rem;
  margin-top: .3rem
}

label {
  font-size: 14px;
  font-size: var(--FSXS)
}

input, select, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  text-decoration: none;
}

input:focus, .button:focus {
  outline: 0
}

input[type=text], input[type=date], input[type=time], input[type=email], textarea, select {
  width: 100%;
  border: 1px solid #1f203d;
  border: 1px solid var(--dark);
  color: #1f203d;
  color: var(--dark);
  background: 0 0;
  margin-bottom: 1rem;
  padding: .7em 1em;
  border-radius: .25em
}

input:focus {
  outline: 0
}

.inv_label {
  color: #ff3683 !important;
  color: var(--red) !important;
  -webkit-transition: color .2s ease;
  transition: color .2s ease
}

.inv_input {
  border-color: #ff3683 !important;
  border-color: var(--red) !important;
  color: #ff3683 !important;
  color: var(--red) !important;
  -webkit-transition: border-color .3s ease, color .2s ease;
  transition: border-color .3s ease, color .2s ease
}

select {
  background-image: url(/icons/select_arrow.svg);
  background-size: auto 100%;
  background-position: 100%;
  background-repeat: no-repeat
}

input[type=radio], input[type=checkbox] {
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #1f203d;
  border: 1px solid var(--dark);
  margin: 0 .5rem 0 0;
  background: 0 0;
  background-position: 50%;
  background-size: 100%;
  background-image: none
}

.rad_check {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: .5rem 0
}

input[type=radio] {
  border-radius: 50%
}

/* input[type=radio]:checked {
  background-image: url(/icons/radio.svg)
} */

input[type=checkbox] {
  border-radius: .15rem
}

/* input[type=checkbox]:checked {
  background-image: url(/icons/checkbox.svg)
} */

.input-row input, .input-row textarea {
  width: -webkit-fill-available;
  width: -moz-available;
  font-size: 18px;
  font-size: var(--FSD)
}

.contact-form__checkbox {
  margin-top: .8rem
}

.contact-form__checkbox input[type=checkbox] {
  margin-bottom: -.3rem
}

a.close-overlay {
  float: right
}

.error-message {
  color: #ff3683;
  color: var(--red)
}

@media(max-width: 1024px) {
  .rad_check {
    margin: 1rem 0
  }
}

@-webkit-keyframes move-in-top {
  0% {
    top: -100%
  }
  5% {
    top: -50%
  }
  100% {
    top: 0
  }
}

@keyframes move-in-top {
  0% {
    top: -100%
  }
  5% {
    top: -50%
  }
  100% {
    top: 0
  }
}

.mobile-nav {
  display: none
}

header#main-header {
  position: absolute;
  width: 100%;
  height: 72px;
  height: var(--nav-height-mobile);
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: none
}

header#main-header .wrap {
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: line-height .5s;
  transition: line-height .5s
}

header#main-header .header-button {
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight:700;
  border-radius: .25em;
  padding: .7em 1.4em;
  min-width: 6em;
  border: none;
  font-size: var(--FSS)
}
@media screen and (min-width: 1099.99px) {
	 header#main-header .header-button  {
    display: inline-block;
    min-width: 0;
    min-width: initial;
	}
}

header#main-header nav {
  display: block
}

header#main-header nav ul {
  margin: 0;
  padding: 0
}

header#main-header .logo img {
  width: 7rem;
  vertical-align: middle
}

header#main-header .mobile-icon {
  display: block;
  position: relative
}

header#main-header .mobile-icon .mobile-icon-button {
  cursor: pointer
}

header#main-header .nav-wrapper {
  width: 100vw;
  min-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  position: fixed;
  display: -webkit-box;
  display: flex;
  height: 100%;
  z-index: 1;
  top: 0;
  right: -100vw;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s
}

header#main-header .nav-wrapper .main-nav {
  -webkit-box-ordinal-group: 3;
  order: 2;
  height: 100%;
  width: 94%;
  margin: 0 auto;
  padding-top: 1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start
}

header#main-header .nav-wrapper .main-nav ul {
  white-space: nowrap ;
}

header#main-header .nav-wrapper .main-nav ul li {
  display: block;
  line-height: inherit;
  margin: 0;
  position: static;
}

header#main-header .nav-wrapper .main-nav ul li.expandable > a:nth-child(1) span:after {
  content: "";
  width: .3em;
  height: .3em;
  display: inline-block;
  margin-left: 4px;
  margin-bottom: 2px;
  border: 1px solid;
  border-width: 0 2px 2px 0;
  -webkit-transform: perspective(999px) translateZ(0) rotate(-45deg);
  transform: perspective(999px) translateZ(0) rotate(-45deg)
}

header#main-header .nav-wrapper .main-nav ul li.expandable.hover ul {
  display: block;
  -webkit-transform: translate3d(-85vw, 0, 0);
  transform: translate3d(-85vw, 0, 0)
}

header#main-header .nav-wrapper .main-nav ul li.expandable.hover ul li {
  width: 94%;
  margin: 0 auto
}

header#main-header .nav-wrapper .main-nav ul li a {
  font-size: var(--FSL);
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  display: block;
  padding: .725rem 0
}

header#main-header .nav-wrapper .main-nav ul li ul {
  display: block;
  position: absolute;
  left: auto;
  top: 0;
  right: -85vw;
  width: 80vw;
  height: 100vh;
  padding: 4.6rem 0 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  z-index: 1
}

header#main-header .nav-wrapper .login-nav {
  -webkit-box-ordinal-group: 2;
  order: 1;
  width: 94%;
  margin: 0 auto;
  height: 72px;
  height: var(--nav-height-mobile);
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

header#main-header .nav-wrapper .login-nav ul {
  display: -webkit-box;
  display: flex;
}

header#main-header .nav-wrapper .login-nav ul li .login-nav-button-register {
  margin-left: .5rem;
}

header#main-header .nav-wrapper .main-nav ul {
    white-space: nowrap;
}

header#main-header .nav-wrapper .main-nav::after {
    content: "";
    position: absolute;
    right: 19%;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: var(--dark70);
}


.cta-button {
    display: flex;
    align-items: center;
    background-color: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: var(--FSS);
    font-weight: 700;
    transition: all .2s ease;
}

.cta-text {

}

.cta-icon {
  	margin-left: .4rem;
    width: 1rem;
    height: 1rem;
    justify-content: center;
}

header#main-header .nav-wrapper .login-nav .login-nav-close {
  margin-right: .9rem;
  z-index: 2;
  display: block;
  cursor: pointer;
  color: var(--white)
}

header#main-header .nav-wrapper .login-nav .login-nav-close img {
  height: 18px;
  width: 18px
}

header#main-header.header--sticky {
  position: fixed;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .14902);
  -webkit-animation-name: move-in-top;
  animation-name: move-in-top;
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1
}

header#main-header.header--white .nav-wrapper, header.header--dark .nav-wrapper, header.header--transparent .nav-wrapper {
  background-color: var(--dark);
}

header#main-header.header--white .nav-wrapper .main-nav ul li.expandable > a span:after, header.header--dark .nav-wrapper .main-nav ul li.expandable > a span:after, header.header--transparent .nav-wrapper .main-nav ul li.expandable > a span:after {
  color: var(--white);
}

header#main-header.header--white .nav-wrapper .main-nav ul li.current > a, header.header--dark .nav-wrapper .main-nav ul li.current > a, header.header--transparent .nav-wrapper .main-nav ul li.current > a {
  color: #39b9ff;
  color: var(--dark-yellow)
}

header#main-header.header--white .nav-wrapper .main-nav ul li.current > a span:after, header.header--dark .nav-wrapper .main-nav ul li.current > a span:after, header.header--transparent .nav-wrapper .main-nav ul li.current > a span:after {
  color: #39b9ff;
  color: var(--dark-yellow)
}

header#main-header.header--white .nav-wrapper .main-nav ul li a, header.header--dark .nav-wrapper .main-nav ul li a, header.header--transparent .nav-wrapper .main-nav ul li a {
  color: var(--white);
}

header#main-header.header--white .nav-wrapper .main-nav ul li ul, header#main-header.header--dark .nav-wrapper .main-nav ul li ul, header#main-header.header--transparent .nav-wrapper .main-nav ul li ul {
  background: var(--dark);
  border: 1px solid var(--dark);
  box-shadow: 0 0 10px rgba(0, 0, 0, .14902);
  border-radius: 4px;
}

header#main-header.header--white .nav-wrapper .main-nav ul li ul li a.current, header#main-header.header--dark .nav-wrapper .main-nav ul li ul li a.current, header#main-header.header--transparent .nav-wrapper .main-nav ul li ul li a.current {
  color: var(--white);
}

header#main-header.header--white .nav-wrapper .login-nav ul li .login-nav-button-login, header#main-header.header--dark .nav-wrapper .login-nav ul li .login-nav-button-login, header#main-header.header--transparent .nav-wrapper .login-nav ul li .login-nav-button-login {
    color: var(--white);
}

header#main-header.header--white .nav-wrapper .login-nav ul li .login-nav-button-register, header#main-header.header--dark .nav-wrapper .login-nav ul li .login-nav-button-register, header#main-header.header--transparent .nav-wrapper .login-nav ul li .login-nav-button-register {
  color: #fff;
  color: var(--white);
  background: #1f203d;
  background: var(--dark)
}

header#main-header.header--white .nav-wrapper .login-nav .btn-imp, header#main-header.header--dark .nav-wrapper .login-nav .btn-imp, header#main-header.header--transparent .nav-wrapper .login-nav .btn-imp {
  color: #fff;
  color: var(--white);
  background-color: #1f203d;
  background-color: var(--dark);
  border: solid 1px #1f203d;
  border: solid 1px var(--dark)
}

header#main-header.header--white .nav-wrapper .login-nav .btn-def, header#main-header.header--dark .nav-wrapper .login-nav .btn-def, header#main-header.header--transparent .nav-wrapper .login-nav .btn-def {
  border: solid 1px #1f203d;
  border: solid 1px var(--dark);
  color: #1f203d;
  color: var(--dark);
  background-color: transparent
}

header#main-header.header--dark {
  background-color: #1f203d;
  background-color: var(--dark)
}

header#main-header.header--dark .logo .logo-dark {
  display: none
}

header#main-header.header--dark .logo .logo-white {
  display: inline
}

header#main-header.header--dark .mobile-icon .mobile-icon-button {
  color: #f5f7f9;
  color: var(--white)
}

header#main-header.header--white {
  background-color: var(--dark);
}

header#main-header.header--white .logo .logo-dark {
  display: inline
}

header#main-header.header--white .logo .logo-white {
  display: none
}

header#main-header.header--white .mobile-icon .mobile-icon-button {
  color: #1f203d;
  color: var(--dark)
}

header#main-header.header--transparent .logo .logo-dark {
  display: none
}

header#main-header.header--transparent .logo .logo-white {
  display: inline
}

header#main-header.header--transparent .mobile-icon .mobile-icon-button {
  color: #f5f7f9;
  color: var(--white)
}

.mobile-nav:checked ~ header#main-header .nav-wrapper {
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0)
}

.section-header {
  background-color: var(--dark);
  overflow: hidden;
}

.section-header .section {
  padding-top: 72px;
  padding-top: var(--nav-height-mobile);
  background-image: url("	https://growney.de/images/backgrounds/blog_category.png");
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

.no-scroll {
  overflow: hidden
}

@media screen and (min-width: 768px) {
  header#main-header .nav-wrapper {
    min-width: auto;
    width: 50vw
  }
  header#main-header .nav-wrapper .main-nav ul li ul {
    width: 40vw
  }
  
  header#main-header.header--white .nav-wrapper .main-nav .btn-imp, header#main-header.header--dark .nav-wrapper .main-nav .btn-imp, header#main-header.header--transparent .nav-wrapper .main-nav .btn-imp {
    color: #fff;
    color: var(--white);
    background-color: #1f203d;
    background-color: var(--dark);
    border: solid 1px #1f203d;
    border: solid 1px var(--dark)
  }
  header#main-header.header--white .nav-wrapper .main-nav .btn-def, header#main-header.header--dark .nav-wrapper .main-nav .btn-def, header#main-header.header--transparent .nav-wrapper .main-nav .btn-def {
    border: solid 1px #1f203d;
    border: solid 1px var(--dark);
    color: #1f203d;
    color: var(--dark);
    background-color: transparent
  }
}

@media screen and (min-width: 1099.99px) {
  header#main-header {
    height: 85px;
    height: var(--nav-height-desktop)
  }
  header#main-header .logo {
    margin: 0
  }
  header#main-header .mobile-icon {
    display: none
  }
  header#main-header .nav-wrapper {
    position: relative;
    right: 0;
    width: auto;
    min-width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row
  }
  header#main-header .nav-wrapper .main-nav {
    -webkit-box-ordinal-group: 2;
    order: 1;
    padding-top: 0;
    height: auto;
    -webkit-box-align: center;
    align-items: center
  }
  header#main-header .nav-wrapper .main-nav > ul {
    margin-right: 1.5rem
  }
  header#main-header .nav-wrapper .main-nav > ul > li {
    margin-right: 1.5rem;
    padding: 0.5rem 0
  }
  header#main-header .nav-wrapper .main-nav ul li {
    display: inline-block;
    position: relative
  }
  header#main-header .nav-wrapper .main-nav ul li a {
    font-size: var(--FSS);
    font-weight: 400;
    cursor: pointer
  }
  header#main-header .nav-wrapper .main-nav ul li ul {
    max-height: none;
    position: absolute;
    left: 0;
    top: 55px;
    right: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .325s;
    transition: opacity .325s;
    height: auto;
    width: auto;
    padding: .375rem 0;
    border-radius: 2px
  }
  header#main-header .nav-wrapper .main-nav ul li ul li {
    display: block
  }
  header#main-header .nav-wrapper .main-nav ul li ul li a {
    padding: .6rem 1rem
  }
  header#main-header .nav-wrapper .main-nav ul li.expandable {
    padding-right: 1rem
  }
  header#main-header .nav-wrapper .main-nav ul li.expandable > a:nth-child(1) span:after {
    content: "›";
    display: inline;
    font-size: 1.5rem;
    line-height: 1.2rem;
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    right: 0;
    border: none;
    width: auto;
    height: auto
  }
  header#main-header .nav-wrapper .main-nav ul li.expandable:hover > a span:after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    right: 3px
  }
  header#main-header .nav-wrapper .main-nav ul li.expandable:hover ul {
    visibility: visible;
    opacity: 1
  }
  header#main-header .nav-wrapper .login-nav {
    -webkit-box-ordinal-group: 3;
    order: 2;
    width: auto;
    height: auto
  }
  header#main-header .nav-wrapper .login-nav .login-nav-close {
    display: none
  }
  header#main-header.header--sticky .nav-wrapper {
    position: relative;
    right: 0;
    width: auto;
    min-width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row
  }
  header#main-header.header--white .nav-wrapper {
    background-color: transparent
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li > a {
    color: var(--white)
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li a:hover {
    color: var(--dark-yellow);
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li ul {
    background-color: var(--dark);
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li ul li a {
    color: var(--white);
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li.expandable > a span:after {
    color: var(--white);
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li.expandable:hover > a span:after {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li.expandable:hover > a {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li.current > a {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--white .nav-wrapper .main-nav ul li.current > a span:after {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--white .nav-wrapper .login-nav .btn-imp {
    background-color: #1f203d;
    background-color: var(--dark);
    border-color: #1f203d;
    border-color: var(--dark);
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--white .nav-wrapper .login-nav .btn-def {
    border-color: #fff;
    border-color: var(--white);
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--white .nav-wrapper .login-nav .header-button {
    border-color: #1f203d;
    border-color: var(--dark)
  }
  header#main-header.header--white .nav-wrapper .login-nav .header-button:hover {
    border-color: #39b9ff;
    border-color: var(--dark-yellow);
    background-color: #39b9ff;
    background-color: var(--dark-yellow);
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--dark .nav-wrapper {
    background-color: transparent
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li > a {
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li a:hover {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li ul {
     background-color: var(--dark);
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li ul li a {
    color: var(--white)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li.expandable > a span:after {
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li.expandable:hover > a span:after {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li.expandable:hover > a {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li.current > a {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--dark .nav-wrapper .main-nav ul li.current > a span:after {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--dark .nav-wrapper .login-nav .btn-imp {
    background-color: #fff;
    background-color: var(--white);
    border-color: #fff;
    border-color: var(--white);
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--dark .nav-wrapper .login-nav .btn-def {
    border-color: #fff;
    border-color: var(--white);
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--dark .nav-wrapper .login-nav ul li .login-nav-button-login {
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--dark .nav-wrapper .login-nav ul li .login-nav-button-register {
    background-color: #fff;
    background-color: var(--white);
    border-color: #fff;
    border-color: var(--white);
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--dark .nav-wrapper .login-nav .header-button:hover {
    border-color: #39b9ff;
    border-color: var(--dark-yellow);
    background-color: #39b9ff;
    background-color: var(--dark-yellow);
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--transparent .nav-wrapper {
    background-color: transparent
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li > a {
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li a:hover {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li ul {
    background-color: #f5f7f9;
    background-color: var(--white)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li ul li a {
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li.expandable > a span:after {
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li.expandable:hover > a span:after {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li.expandable:hover > a {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header.header--transparent .nav-wrapper .main-nav ul li.current > a {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--transparent .nav-wrapper .main-nav ul li.current > a span:after {
    color: #39b9ff;
    color: var(--dark-yellow)
  }
  header#main-header.header--transparent .nav-wrapper .login-nav .btn-imp {
    background-color: #fff;
    background-color: var(--white);
    border-color: #fff;
    border-color: var(--white);
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--transparent .nav-wrapper .login-nav .btn-def {
    border-color: #fff;
    border-color: var(--white);
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--transparent .nav-wrapper .login-nav ul li .login-nav-button-login {
    color: #fff;
    color: var(--white)
  }
  header#main-header.header--transparent .nav-wrapper .login-nav ul li .login-nav-button-register {
    background-color: #fff;
    background-color: var(--white);
    border-color: #fff;
    border-color: var(--white);
    color: #1f203d;
    color: var(--dark)
  }
  header#main-header.header--transparent .nav-wrapper .login-nav .header-button:hover {
    border-color: #39b9ff;
    border-color: var(--dark-yellow);
    background-color: #39b9ff;
    background-color: var(--dark-yellow);
    color: #1f203d;
    color: var(--dark)
  }
  .mobile-nav:checked ~ header .nav-wrapper {
    -webkit-transform: none;
    transform: none
  }
  .section-header .section {
    padding: 4rem 0;
  }
}

.block-header {
  overflow: hidden
}

.section-header .has-image .column:nth-child(2) img {
  width: 100%
}

.header-background {
  width: 100%;
  height: 100vh;
  position: relative
}

.header-background-2-col {
  width: 100%;
  min-height: 100vh;
  position: relative
}

.header-background-2-col picture {
  overflow: hidden
}

.header-box--text {
  height: 85vh;
  width: 100%;
  padding-top: 25vh;
  text-align: center
}

.header-box--logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap
}

.headline-wrapper-row {
  padding-left: 0;
  margin-bottom: 1.25rem
}

.header__headline {
  position: relative;
  margin: 0 auto
}

.header__headline--large {
  font-size: 60px;
  letter-spacing: normal;
  line-height: 1.3em;
  font-weight: 600
}

.header__headline-col-2 {
  position: relative;
  width: 100%;
  margin: 0 auto
}

.header-box--animation {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  align-items: flex-end;
  margin-top: 6rem
}

.header-box-col-2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 85px
}

.header-box-col-2-container {
  height: 100%;
  width: 100%
}

.header__left {
  margin-top: 1rem;
  -webkit-box-ordinal-group: 2;
  order: 1;
  text-align: center
}

.header__right {
  margin-bottom: 1rem;
  -webkit-box-ordinal-group: 1;
  order: 0
}

.header-box-col-2 li::before {
  position: absolute;
  top: 0;
  left: -2px;
  content: "";
  width: 8px;
  height: 18px;
  border: solid #204276;
  border-width: 0 1px 1px 0;
  -webkit-transform: perspective(999px) translateZ(1px) rotate(45deg);
  transform: perspective(999px) translateZ(1px) rotate(45deg)
}

.header-box-col-2 ul {
  display: inline-block;
  text-align: left
}

.header-box-col-2 li {
  position: relative;
  margin-left: 8px;
  padding-left: 1.5rem
}

.header__right__image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center
}

@media screen and (max-width: 768px) {
  .section-header .wrap.has-image > .column:first-child {
    -webkit-box-ordinal-group: 3;
    order: 2
  }
  .header-diagonal-light {
    border-right: 100vw solid #f5f7f9;
    border-right: 100vw solid var(--white)
  }
  .header-diagonal-grey {
    border-right: 100vw solid #edf1f5;
    border-right: 100vw solid var(--grey_bg)
  }
  header#main-header .nav-wrapper .main-nav ul::after {
    width: 0px;
	}  
}

@media screen and (min-width: 1099.99px) {
  .teaser-knownfrom {
    padding: 12px 0
  }
  .first-container {
    margin-top: 120px
  }
  .header-box-col-2 {
    padding-top: 120px
  }
}

@media screen and (max-width: 1100px) {
  .hide-for-small-only {
    display: none !important
  }
  .box-testimonial-thumbnail {
    left: 26%
  }
}

@media screen and (min-width: 1024px) {
  .header__left {
    margin-top: 0;
    -webkit-box-ordinal-group: 1;
    order: 0;
    text-align: left
  }
  .header__right {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .header__headline-col-2 .grid-x {
    padding: 0 10rem;
  }
}

.section, .section-pd {
  padding: 1rem 0 1rem 0;
}

.anchor-placeholder {
  visibility: hidden;
  -webkit-transform: translateY(calc(-1 * 85px));
  transform: translateY(calc(-1 * 85px));
  -webkit-transform: translateY(calc(-1 * var(--nav-height-desktop)));
  transform: translateY(calc(-1 * var(--nav-height-desktop)))
}

.section-header p {
  color: #fff;
  color: var(--white);
}

.section-header .wrap {
  margin-top: 2.5rem;
}

.section-header h1 {
  margin-top: 0;
}

.section-header .column:nth-child(2) p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.section-cost-advantage__btn-wrapper .button {
  background-color: #fff;
  background-color: var(--white);
  color: var(--dark-yellow);
  padding: .5em .875em;
  border: 1px solid #e8ecf1;
}

.section-cost-advantage__btn-wrapper .button:hover {
  background-color: var(--dark-yellow);
  color: #fff;
  color: var(--white);
  cursor: pointer;
}

.section-cost-advantage__btn--active {
  background-color: var(--dark-yellow) !important;
  color: #fff !important;
  color: var(--white) !important;
}

.section-cost-advantage__sum {
  background-color: var(--dark-yellow);
  width: 100%;
  padding: 16px;
}

.section-cost-advantage__sum--large {
  font-size: var(--FSL);
  font-weight: 700;
  margin: 12px 0;
}

.section-cost-advantage__sum--medium {
  font-size: 18px;
  color: #fff;
  color: var(--white);
}

@media(max-width: 768px) {
  .anchor-placeholder {
    -webkit-transform: translateY(calc(-1 * 72px));
    transform: translateY(calc(-1 * 72px));
    -webkit-transform: translateY(calc(-1 * var(--nav-height-mobile)));
    transform: translateY(calc(-1 * var(--nav-height-mobile)))
  }
  .section, .section-pd {
    padding: 3rem 0;
  }
  .blog-hero-content {
    padding: 0.5rem 0.75rem;
	}
  
}

.social-nav > a {
  margin-right: 1rem
}

.social-icon-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: left;
  justify-content: left
}

.column-left-social svg {
  fill: var(--white);
  width: 2rem;
  height: auto;
  max-height: 1.8rem
}

.column-left-social svg:hover {
  fill: var(--dark-yellow);
}

.box-imprint-law {
  padding-top: 4px
}

.box-imprint-law a {
  margin-right: 2%
}

.column-right-logo {
  text-align: right;
  margin-right: 0;
}

.logo-vuv {
  width: 8rem;
  height: auto
}

@media(max-width: 768px) {
  .grid-col-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
}
  .box-imprint-law {
    display: grid;
    grid-template-columns: 50% 50%;
    padding-top: 0
}
  .social-icon-wrapper {
    justify-content: space-around;
    margin-bottom: 8px
  }  
  .column-left {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.column-right {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
	}
  .column-right-logo {
    text-align: center;
    margin-right: 0;
  }
  .mt1em-on-mobile {
    margin-top: 1rem
  }
}

.justify-center {
  justify-content: center
}


* {
  box-sizing:border-box;
}
body > main {
  min-height: 65vh;
  padding: 0;
}

.container {
  max-width: 1190px;
  margin: 0 auto;
  width: 94%;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .container {
  	padding-top: 9rem;
  }
}
@media (min-width: 1190px) {
  .container {
    width: 94%;
  	padding-top: 6rem;
  }
}
.container-divider {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::after {color: inherit}

/***** Buttons *****/
.button, [role="button"] {border: 1px solid var(--dark);border-radius: 4px;color:var(--dark);cursor: pointer;display: inline-block;font-size: var(--FSS);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; text-decoration: none;}
@media (min-width: 768px) {
  .button, [role="button"] {width: auto}
}
/* .button::after, [role="button"]::after {color: var(--dark)} */
.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:var(--dark-yellow);color:var(--dark) !important;border-color:var(--dark-yellow);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: darken(var(--dark), 20%);border-color: darken(var(--dark), 20%);}
.button[data-disabled], [role="button"][data-disabled] {cursor: default;}
.button-large, input[type="submit"] {background-color: var(--dark);border: 0;border-radius: 4px;color: var(--white);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: darken(var(--dark), 20%);}
.button-large[disabled], input[type="submit"][disabled] {background-color: #ddd;}
.button-secondary {color: lighten(var(--dark), 20%);border: 1px solid #ddd;background-color: transparent}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active {color: var(--dark);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: lighten(var(--dark), 20%);font-size: 13px;text-align: left}
[dir="rtl"] .table th, [dir="rtl"]
.table th a {text-align: right;}
.table tr {border-bottom: 1px solid #ddd;display: block;padding: 20px 0;}
@media (min-width: 768px) {
  .table tr {display: table-row;}
}
.table td {display: block;}
@media (min-width: 768px) {
  .table td {display: table-cell;}
}
@media (min-width: 1024px) {
  .table td, .table th {padding: 20px 30px;}
}
@media (min-width: 768px) {
  .table td, .table th {padding: 10px 20px;height: 60px;}
}

/***** Forms *****/
.form {max-width: 650px;}
.form-field ~ .form-field {margin-top: 25px;}
.form-field label {display: block;font-size: 13px;margin-bottom: 5px}
.form-field input {border: 1px solid #ddd;border-radius: 4px;padding: 10px;width: 100%}
.form-field input:focus {border: 1px solid var(--dark)}
.form-field input[type="text"] {border: 1px solid #ddd;border-radius: 4px}
.form-field input[type="text"]:focus {border: 1px solid var(--dark)}
.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 var(--dark);text-decoration: none;}
.form-field textarea {vertical-align: middle}
.form-field input[type="checkbox"] + label {margin: 0 0 0 10px;}
.form-field.required > label::after {content: "*";color: #f00;margin-left: 2px}
.form-field p {color: lighten(var(--dark), 20%);font-size: 12px;margin: 5px 0}
[data-loading="true"] input,
[data-loading="true"] textarea {background: transparent url("/hc/theming_assets/01HZPDCGY05GJBBK8T8EFG4A15") 99% 50% no-repeat;background-size: 16px 16px;}
.form footer {margin-top: 40px;padding-top: 30px;}
.form footer a {
  color: lighten(var(--dark), 20%);
  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: #6d6000;
}

/***** Header *****/
.header {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  position: fixed;
  height: 75px;
  background-color: white;
  z-index:20;
  background-color: rgba(255,255,255,1);
	box-shadow: 0 10px 20px rgba(0,0,0,.17);
}

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


.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: rgba(211, 186, 0, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover {
  color: rgba(211, 186, 0, 1);
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: rgba(211, 186, 0, 1);
  padding-right: 15px;
}

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

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

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

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

/***** 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: var(--dark);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: var(--white);
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Footer *****/

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    border-top: 1px solid var(--dark);
    overflow: hidden;
}

.wrap {
    width: 94%;
}

.footer-container {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem !important;
    margin: 0 auto;
}


.footer-first-row, .footer-second-row {
    display: flex;
    flex-direction: column;
}


.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.footer-contact-title {
    font-size: var(--FSL);
    font-weight: 400;
    line-height: 120%;
    margin: 0;
    text-transform: uppercase;
}

.footer-contact-title .footer-contact-title-bold {
    font-weight: 700;
    font-style: italic;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    font-size: var(--FSS);
    line-height: 140%;
}

.footer-contact-info .footer-help-link {
    margin: 1.5rem 0 1rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title.desktop-title {
    display: none;
    font-size: var(--FSD);
    font-weight: 400;
    line-height: 140%;
    margin: 0 0 .625rem;
    color: var(--white);
    padding-bottom: .625rem;
    border-bottom: .0625rem solid  var(--dark50);
}

.footer-nav-toggle.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .9rem 0;
    background: 0 0;
    border: none;
    color: var(--white);
    font-size: var(--FSM);
    font-weight: 700;
    font-style: italic;
    line-height: 120%;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    transition: background-color .2s ease;
    position: relative;
}

.footer-nav-toggle.mobile-toggle .footer-nav-arrow {
    transition: transform .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-1.5px) rotate(180deg);
}

.footer-nav-toggle.mobile-toggle .footer-nav-arrow svg {
    width: .75rem;
    height: .75rem;
}

.footer-nav-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.footer-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-nav-link-item {
    padding-bottom: .5rem;
}

.footer-nav-link-item::before {
    content: '';
}

.footer-nav-link-item a {
    display: block;
    font-size: var(--FSS);
    font-weight: 600;
    line-height: 140%;
    transition: color .2s ease;
    padding: .25rem 0;
}

.footer-nav-link-text {
    display: block;
    word-wrap: break-word;
    hyphens: auto;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    margin: 1.88rem 0;
}

.footer-disclaimer {
    font-size: var(--FSXS);
    line-height: 140%;
    color: var(--white);
}

.footer-legal-links {
    font-size: var(--FSD);
    line-height: 140%;
    max-width: 40rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.footer-legal-links-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-legal-links-row a {
    text-decoration: underline;
}

.footer-contact-info a {
    text-decoration: underline;
}

.footer-social .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-bg-image {
    width: 100%;
    height: 12.5rem;
}

.footer-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (min-width: 768px) {
    .footer-contact-title {
        font-size: var(--FSM);
    }
  .footer-contact {
        gap: 1rem;
        margin-bottom: 0;
    }
  .footer-first-row, .footer-second-row {
        display: grid;
        grid-template-columns: 1fr 3fr;
        gap: 2rem;
        align-items: flex-start;
    }
  .footer-container {
        padding-top: 5.625rem;
    }
    .wrap {
        max-width: 1190px;
        display: flex;
        gap: 4%;
        flex-wrap: wrap;
    }
		.footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
		}
  
    .footer-nav-title.desktop-title {
        display: block;
    }

    .footer-nav-toggle.mobile-toggle {
        display: none;
    }

    .footer-nav-content {
        max-height: none;
        overflow: visible;
        transition: none;
    }
    
  	.footer-nav-links {
        gap: .625rem;
    }

    .footer-nav-link-item {
        padding: 0;
    }

		.footer-legal {
        margin: 0;
        gap: 1.3rem;
    }
 
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem;
        font-size: var(--FSXS);
        flex-direction: column;
    }

    .footer-nav-link-item a {
        padding: 0;
        font-weight: 400;
        text-decoration-line: underline;
    }
  
      .footer-legal-links-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
}  
@media (min-width: 1330px) {
    .wrap {
        width: 89%;
    }
}  

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

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

.breadcrumbs li {
  display: inline;
  font-size: var(--FSXS);
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  content: ">";
  margin: 0 4px;
}


/***** Search field *****/
.search {
  position: relative  
}

.section-header .search {
  width: 50%
}

@media (max-width: 768px) {
  .section-header .search {
  	width: 100%
	}
}

.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;
  color: #555;
}

.search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #ddd;
  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 #204276;
}

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01K9WY72WMJMJD0TM898QDC9W6);
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

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

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

.blog-hero-content {
    width: 100%;
    max-width: var(--wrapWidth);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem .75rem 3rem;
}

.blog-hero-content-title {
    margin: 0;
    font-size: var(--FSL);
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
  	color: var(--dark);
}

.blog-hero-content-subtitle {
    display: block;
    margin-top: 1rem;
    font-size: var(--FSD);
    font-weight: 400;
    line-height: 145%;
    text-transform: none;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: column;
    margin: 0;
  }
  
    .blog-hero-content {
    	padding: 3rem 2.15rem 0 2.15rem;
    }
}

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

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

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
  font-size: var(--FSL);
	font-weight: 700;
}

.page-header-description {
  font-style: italic;
  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 {
  border: 1px solid var(--dark);
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--dark);
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 30px;
  width: 100%;
  max-width:340px;
  text-align: center;
}

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

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: var(--dark);
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  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: var(--dark);
}

.blocks-item-link {
  color: var(--dark);
  padding: 20px 30px;
}

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

.blocks-item-title {
  margin-bottom: 0;
}

.blocks-item-description {
  margin: 0;
}

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

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

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

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

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

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

.promoted-articles-item a {
  border-bottom: 1px solid #ddd;
  color: var(--dark);
  display: block;
  padding: 15px 0;
}

.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/01K9WY72WMJMJD0TM898QDC9W6);
  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 {
  --FSS: 16px;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: var(--dark);
  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;
}

.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: lighten(var(--dark), 20%);
  display: inline-block;
  font-size: 13px;
}

.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: var(--dark);
  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: inherit;
  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;  
  -webkit-box-align: normal;
  align-items: normal;
}

@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 45%;
    /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

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

.section-tree-title {
  margin-bottom: 0;
  font-size: var(--FSM);
    font-weight: 700;
}

.section-tree-title a {
  line-height: 1.3em;
}

.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
  font-weight: 700;
}

.article-list-item {
  font-size: var(--FSD);
  border-bottom: 1px solid var(--dark);
}

.article-list-link {
    color: var(--dark);
    cursor: pointer;
    user-select: none;
    font-size: var(--FSD);
    text-decoration: none;
    display: flex;
  	padding: 1rem;
  	justify-content: space-between;
  	align-items: center;
}

.article-list-link .accordion-arrow  {
  transition: transform .4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2222rem;
    height: 2.2222rem;
    border: 1px solid var(--dark);
    border-radius: 50%;
    flex-shrink: 0;
    transform: translateY(-1.5px) rotate(90deg);
}

.article-list-link:hover {
    color: var(--dark-yellow);
		text-decoration-color: var(--dark-yellow);
  	background-color: inherit;
		transform: scale(1.01);
}

@media(max-width: 768px) {
  .article-list-item a {
    line-height: 1.5em;
  }
}

.icon-star::before {
  color: var(--dark);
  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 0 0;
  }
}

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

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

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

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

.article-header h1 {
  font-size: var(--FSM);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2em;
}

.article-header h2 {
  font-size: var(--FSM);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2em
}

.article-header h3 {
  font-size: var(--FSM);
  margin-top: 0 ;
  font-weight: 700;
  line-height: 1.2em
}

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

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

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

.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-meta {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

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

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

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

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

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

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

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten(var(--dark), 20%);
  font-style: italic;
  padding: 0 15px;
}

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

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

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

.article-comment-count {
  color: lighten(var(--dark), 20%);
}

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

.article-comment-count .icon-comments {
  color: var(--dark);
  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-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

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

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

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

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

.article-votes {
  border-top: 1px solid #ddd;
  padding: 15px 0;
  text-align: center;
}

.article-vote {
  background: transparent;
  /*border: 1px solid var(--dark);*/
  border: 1px solid var(--dark);
  padding: .6em 1.4em;
  border-radius: 0.25rem;
  /*color: var(--dark);*/
  color: var(--dark);
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
  transition: color .2s ease
}

.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: var(--dark);
}

.article-vote:hover {
  background-color: var(--dark-yellow);
}

.article-vote:hover::before, .article-vote:hover::after, .article-vote[aria-selected="true"]::before, .article-vote[aria-selected="true"]::after {
  color: var(--dark);
}

.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: var(--dark);
  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 {
  --FSS: 16px;
  margin-left: 5px;
}

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

.article-unsubscribe {
  background-color: var(--dark);
  color: var(--white);
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: darken(var(--dark););
  border-color: darken(var(--dark););
}

.sidenav-title {
  font-size: var(--FSD);
	font-weight:700;
  position: relative;
}

.sidenav-item {
  border-radius: 4px;
  border: 1px solid var(--dark);
  color: var(--dark);
  display: block;
  margin-bottom: 10px;
  padding: 10px;
  text-decoration: none;
}

.sidenav-item.current-article {
  background-color: var(--dark);
  color: var(--white);
  text-decoration: none;
}

.sidenav-item:hover {
  background: var(--dark-yellow);
  border-color: var(--dark-yellow);
  color: var(--dark);
  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: var(--dark);
  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: lighten(var(--dark), 20%);
}

/***** 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: lighten(var(--dark), 20%);
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

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

.share a:hover::before {
  color: var(--dark);
}

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

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

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

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

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

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

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

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

.comment-callout {
  color: lighten(var(--dark), 20%);
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: var(--dark);
}

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

.comment-sorter a {
  color: lighten(var(--dark), 20%);
  font-size: 13px;
  text-decoration: none;
}

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

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

.comment-wrapper.comment-official {
  border: 1px solid var(--dark);
  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: var(--dark);
}

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

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

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

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

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

.comment-body a:visited {
  color: #6d6000;
}

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

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

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten(var(--dark), 20%);
  font-style: italic;
  padding: 0 15px;
}

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

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

.vote a {
  outline: none;
}

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

.vote-sum {
  color: lighten(var(--dark), 20%);
  display: block;
  margin: 3px 0;
}

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

.vote-up:hover::before,
.vote-down:hover::before {
  color: var(--dark);
}

.vote-up::before, .vote-down::before {
  color: lighten(var(--dark), 20%);
  font-size: 24px;
}

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

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

.vote-voted::before {
  color: var(--dark);
}

.vote-voted:hover::before {
  color: darken(var(--dark));
}

/***** 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: lighten(var(--dark), 20%);
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow .dropdown {
  width: 100%;
}

.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: var(--dark);
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: var(--white);
  color: var(--white);
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: var(--dark);
  color: var(--white);
}

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

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: darken(var(--dark), 20%);
  border-color: darken(var(--dark), 20%);
}

.community-follow [role="button"]::after {
  border-left: 1px solid var(--dark);
  content: attr(data-follower-count);
  color: var(--dark);
  display: inline-block;
  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 var(--dark);
  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: rgba(211, 186, 0, 1);
  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: #6d6000;
}

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

.striped-list-count {
  color: lighten(var(--dark), 20%);
  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 {
  text-align: center;
}

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

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

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

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: var(--dark);
}

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

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

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

.status-label-pending, .status-label-not-planned {
  background-color: #eee;
  color: lighten(var(--dark), 20%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-header .status-label {
  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 {
  line-height: 1.6;
  word-break: break-word;
}

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

.post-info {
  flex: 1;
}

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

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

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

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

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

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

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

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

.post-body a:visited {
  color: #6d6000;
}

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

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

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten(var(--dark), 20%);
  font-style: italic;
  padding: 0 15px;
}

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

.post-comment-count {
  color: lighten(var(--dark), 20%);
}

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

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

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

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

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

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

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

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

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

.main-navigation .mobile-menu-toggle {
    display: block;
    background: 0 0;
    border: none;
    cursor: pointer;
    color: var(--white);
    flex-shrink: 0;
    width: 3.2rem;
    height: 3.2rem;
}

.main-navigation .mobile-menu-toggle svg {
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.main-navigation .mobile-menu-toggle[aria-expanded=true] path:nth-child(1) {
    transform: translate(-4.3px, 4.3px) rotate(45deg);
}

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

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

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

.collapsible-nav-list li {
  color: var(--dark);
  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: var(--dark);
  display: block;
}

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

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

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

.collapsible-nav-list li[aria-selected="true"] a {
  color: var(--dark);
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

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

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

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

.collapsible-sidebar-title {
  margin-top: 0;
}

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

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

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

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

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

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

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: var(--dark);
}

.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: var(--dark);
  color: var(--white);
}

.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: var(--dark);
  border-radius: 4px;
  color: var(--white);
  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: darken(var(--dark), 20%);
  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: lighten(var(--dark), 20%);
  font-size: 13px;
  
}

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

.no-activities {
  color: lighten(var(--dark), 20%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.request-main .comment-show-container-content {
  align-self: center;
  color: lighten(var(--dark), 20%);
  margin-left: 10px;
}

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

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

.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 var(--dark);
}

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

.request-title {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.request-details dt {
  color: lighten(var(--dark), 20%);
  
  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: var(--dark);
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  color: lighten(var(--dark), 20%);
  padding: 10px 12px;
}

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

.pagination-current {
  background-color: var(--dark);
}

.pagination-current a, .pagination-current span {
  color: var(--white);
}

.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 {
}

.meta-group * {
}

.meta-data {
  color: lighten(var(--dark), 20%);
  font-size: 13px;
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-header .options [data-action="edit-profile"] {
  background-color: var(--dark);
  border: 0;
  color: var(--white);
  line-height: normal;
  padding: 8px 20px;
}

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

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

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

.profile-stats .stat-label {
  color: lighten(var(--dark), 20%);
  
  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 var(--dark);
  border-radius: 4px;
  color: var(--dark);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

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

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

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

.profile-section {
  width: 100%;
}

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

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

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

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: lighten(var(--dark), 20%);
  
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  --FSS: 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 100%;
  }
}

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

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

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

.search-result-description {
  margin-top: 15px;
}

.search-result-votes, .search-result-meta-count {
  color: lighten(var(--dark), 20%);
  display: inline-block;
  font-size: 13px;
  
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: var(--dark);
}

[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;
}

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

/* responsive youtube videos */
.youtube-responsive iframe {position: absolute;top: 0 !important;left: 0 !important; width: 100% !important;height: 100% !important }

.block-button .blocks-list {
  justify-content: space-between
}

.block-button .blocks-item {
  border-color: var(--dark);
  max-width: 100%
}

@media (min-width: 768px) {
  .block-button .blocks-item {
    width: 29%;
    max-width: 29%
  }
}

.block-button h4.blocks-item-title {
  margin: 0;
  font-size: var(--FSM);
  font-weight: 700;
}

.block-button .blocks-item > a {
  padding: 0.6em 1.4em;
  text-align: center;
  color: var(--dark);
  text-decoration: none;
}

.block-button .blocks-item:hover {
  border-color: var(--dark-yellow);
  background-color: var(--dark-yellow)
}

.block-button .blocks-item:hover > a > h4 {  
  color: var(--dark)
}


@media screen and (min-width: 768px) and (max-width: 1329px) {
  .collapsible-sidebar-title {
		margin-top: 6px !important
  }
  
  .collapsible-sidebar ul {
    padding-top: 6px !important
  }
}

@media (max-width: 768px)
  .collapsible-sidebar-title {
		margin-top: 0
  }
}
