@charset "UTF-8";
@font-face {
  font-family: Icons;
  src: url(/hc/theming_assets/01HZEQGX6D1M4X35TYP4H9XRTP) format("woff"),
    url(/hc/theming_assets/01HZEQGXXSSBH6CF5771GSKC5T) format("truetype"),
    url(/hc/theming_assets/01HZEQGYM1Y5AT6YZHNQ5C2C4Y) format("svg");
  font-weight: normal;
  font-style: normal;
}

/* @font-face {
  font-family: Icons;
  src: url(/hc/theming_assets/01HZPQ4ARWW0BHHVH5VE6NJKB7) format("woff"),
    url(/hc/theming_assets/01HZPQ49ZFQ8DQ2CGBJ0K7FMQC) format("truetype"),
    url(/hc/theming_assets/01HZPQ495188B2QZ3WSKR0T7C1) format("svg");
  font-weight: normal;
  font-style: normal;
} */

@font-face {
  font-family: 'Futura PT Demi';
  src: url('/hc/theming_assets/01J03S7ZF8835AD8QGRYDQBHMB');
  src: local('Futura PT Demi'), local('FuturaPT-Demi'),
      url('/hc/theming_assets/01J03S82BXT3FK2C95D2NHB9ZJ') format('woff2'),
      url('/hc/theming_assets/01J03S81QSY8KSESQMYJCPJZGW') format('woff'),
      url('/hc/theming_assets/01J03S80QW1ZSVYR28PE5MC7V0') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Futura PT Book';
  src: url('/hc/theming_assets/01J03S7ZF8835AD8QGRYDQBHMB');
  src: local('Futura PT Book'), local('FuturaPT-Book')
      url('/hc/theming_assets/01J03S7YAXCTJYDC52CQZPXS49') format('woff2'),
      url('/hc/theming_assets/01J03S7XKEMQ352ZR2S6BJ2WT9') format('woff'),
      url('/hc/theming_assets/01J03S7WYMCR137E5HE89Q2RMQ') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/***** Base *****/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Futura PT Demi", helvetica, arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  /* text-transform: uppercase; */
}

body > main {
  margin-top: 55px;
}

@media (min-width: 1024px) {
  body > main {
    margin-top: 95px;
  }
}

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

body .mobile_only {
  display: inherit;
}

@media (min-width: 768px) {
  body .mobile_only {
    display: none;
  }
}

body .mobile-tablet_only {
  display: inherit;
}

@media (min-width: 1024px) {
  body .mobile-tablet_only {
    display: none;
  }
}

.container-area {
  padding-top: 80px;
  padding-bottom: 20px;
  padding-left: 17px;
  padding-right: 17px;
}
@media (min-width: 768px) {
  .container-area {
    padding-left: 36px;
    padding-right: 36px;
  }
}

body .tablet-desktop_only {
  display: none;
}

@media (min-width: 768px) {
  body .tablet-desktop_only {
    display: inherit;
  }
}

body .desktop_only {
  display: none;
}

@media (min-width: 1024px) {
  body .desktop_only {
    display: inherit;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 400;
  /* text-transform: uppercase; */
}

h1 {
  font-size: 30px;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 48px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

@media (min-width: 768px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 16px;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  font-size: 12px;
  text-transform: none;
}

input {
  max-width: 100%;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: border 0.12s ease-in-out;
  -o-transition: border 0.12s ease-in-out;
  transition: border 0.12s ease-in-out;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  /* border-radius: 0 !important; */
}

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

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

select {
  padding: 8px 30px 8px 10px;
  width: 100%;
  background: #fff;
  background-position: right 10px center;
  border: 1px solid rgba(8, 8, 8, 0.3);
  outline: none;
  color: #000;
}

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

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

textarea {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  resize: vertical;
  outline: none;
}

.container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.container-divider {
  margin-bottom: 20px;
}
.container-divider.mh60 {
  margin-bottom: 60px;
}

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

.error-page {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
  padding: 20px 15px;
}

@media (min-width: 1130px) {
  .error-page {
    padding: 0;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: 0 20px;
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: 30px 20px;
  }
}

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

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

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

@media (min-width: 1024px) {
  .h-desktop_hidden {
    display: none !important;
  }
}

.m-menu_opened {
  position: fixed;
  overflow: hidden;
}

.notification-lock {
  position: absolute;
  z-index: 5;
}

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

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

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

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

.button:hover::after,
.button:active::after,
.button:focus::after,
.button[aria-selected="true"]::after,
[role="button"]:hover::after,
[role="button"]:active::after,
[role="button"]:focus::after,
[role="button"][aria-selected="true"]::after {
  color: #fff;
}

.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: #ccc;
  border-color: #ccc;
  color: #fff;
}

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

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

@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: #ccc;
}

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

.button-secondary {
  color: #333;
  border: 1px solid rgba(8, 8, 8, 0.3);
  background-color: transparent;
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
  color: #000;
  border: 1px solid rgba(8, 8, 8, 0.3);
  background-color: #f7f7f7;
}

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

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

.table th,
.table th a {
  color: #333;
  font-size: 10px;
  font-weight: 400;
  text-align: left;
}

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

.table tr {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

@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: 1200px) {
  .table td,
  .table th {
    padding: 20px 30px;
  }
}

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

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

@media (min-width: 1024px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

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

.form-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: normal;
  text-transform: capitalize;
}

@media (min-width: 1024px) {
  .form-field label {
    width: 19%;
  }
}

.form-field input {
  padding: 5px;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

@media (min-width: 1024px) {
  .form-field input {
    width: 81%;
  }
}

.form-field input:focus {
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

.form-field input[type="text"] {
  min-height: 45px;
  border: 1px solid rgba(8, 8, 8, 0.3);
  color: #000;
  border-radius: 20px;
}

.form-field input[type="text"]:focus {
  border: 1px solid rgba(8, 8, 8, 0.3);
}

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

.nesty-panel {
  border-radius: 20px;
}

.form-field .nesty-input {
  height: 45px;
  line-height: 45px;
  outline: none;
  vertical-align: middle;
  border: 1px solid rgba(8, 8, 8, 0.3);
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .form-field .nesty-input {
    width: 81%;
    text-transform: capitalize;
    color: #999;
  }
}

.form-field .nesty-input:focus {
  border: 1px solid rgba(8, 8, 8, 0.3);
  text-decoration: none;
  color: #000;
}

.form-field .nesty-input::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e90f";
  position: absolute;
  right: 10px;
  top: 35%;
  color: #000;
  font-size: 14px;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(8, 8, 8, 0.3);
  text-decoration: none;
}

.form-field textarea {
  min-height: 150px;
  padding: 5px 11px 0;
  vertical-align: middle;
  border: 1px solid rgba(8, 8, 8, 0.3);
  color: #000;
  font-size: 16px;
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .form-field textarea {
    width: 81%;
  }
}

.form-field textarea:focus {
  border: 1px solid rgba(8, 8, 8, 0.3);
}

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

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

.form-field .optional {
  margin-left: 4px;
  color: #333;
}

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

@media (min-width: 1024px) {
  .form-field p {
    margin-left: 19%;
  }
}

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

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

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

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

.form .suggestion-list label {
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

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

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

.f-select-wrapper {
  position: relative;
}

.f-select-wrapper::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  position: absolute;
  right: 7px;
  top: 22px;
  font-size: 28px;
  z-index: 3;
  background-color: #fff;
}

.f-select {
  position: relative;
  display: block;
  padding: 0 20px;
  height: 64px;
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 2;
}

/***** Header *****/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 55px;
  z-index: 4;
  background-color: #fff;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .header {
    min-height: 95px;
  }
}

.header-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 15px;
  min-height: 55px;
}

@media (min-width: 768px) {
  .header-top {
    padding: 0 36px;
  }
}

@media (min-width: 1024px) {
  .header-top {
    min-height: 95px;
  }
}

.header-top #user #user-name {
  display: none;
}

.header-top .user-info {
  display: none;
  margin-left: auto;
}

.header-top .user-info a {
  border-bottom: none;
}

.header-top .login {
  display: none;
  font-size: 11px;
}

.header-top .login:hover {
  border-bottom-color: transparent;
}

.header-top .icon-menu {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
  top: -3px;
  border: 0;
  color: #000;
  cursor: pointer;
  font-size: 19px;
}

.header-top .icon-menu[aria-expanded="true"] {
  position: fixed;
  margin: 0;
  padding: 0 17px;
  top: 0;
  right: 15%;
  z-index: 102;
}

@media (min-width: 1024px) {
  .header-top .icon-menu[aria-expanded="true"] {
    margin-right: 10px;
  }
}

.header-top .icon-menu[aria-expanded="true"]::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  font-size: 13px;
}

.header-top .icon-menu[aria-expanded="true"] ~ .back-to-shop {
  display: none;
}

@media (min-width: 1024px) {
  .header-top .icon-menu[aria-expanded="true"] ~ .back-to-shop {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .header-top .icon-menu {
    display: none;
  }
}

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

.header-top .icon-menu:hover,
.header-top .icon-menu:focus,
.header-top .icon-menu:active {
  background-color: transparent;
  color: #000;
}

.m-menu_opened .header-top {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.logo {
  position: absolute;
  display: inline-block;
  left: 35%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 101;
}

@media (min-width: 768px) {
  .logo {
    left: 50%;
  }
}

@media (min-width: 1024px) {
  .logo {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 102;
  }
}

.logo img {
  display: block;
  height: 15px;
}

@media (min-width: 1024px) {
  .logo img {
    height: inherit;
  }
}

.logo-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .logo-desktop {
    display: block;
  }
}

.nav-text {
  margin-right: auto;
  margin-bottom: 18px;
}

@media (min-width: 1024px) {
  .nav-text {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: 50%;
    margin: 0;
    min-height: 55px;
    -webkit-transform: translateX(-60%);
    -ms-transform: translateX(-60%);
    transform: translateX(-60%);
  }
}

.nav-text .menu_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .nav-text .menu_category {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.nav-text .menu_category-item {
  width: 100%;
  min-height: 51px;
  border-bottom: 1px solid #ccc;
}

@media (min-width: 1024px) {
  .nav-text .menu_category-item {
    width: auto;
    min-height: 0;
    border: 0;
  }
}

@media (min-width: 1024px) {
  .nav-text .menu_category-item:not(:last-child) {
    margin-right: 20px;
  }
}

.nav-text .menu_category-item--dgyourself .menu_category-link {
  font-weight: 700;
}

.nav-text .menu_category .mobile_subnav {
  background-color: #252525;
}

@media (min-width: 1024px) {
  .nav-text .menu_category .mobile_subnav {
    background-color: #fff;
  }
}

.nav-text .menu_category .mobile_subnav .menu_category-link {
  color: #fff;
}

@media (min-width: 1024px) {
  .nav-text .menu_category .mobile_subnav .menu_category-link {
    color: inherit;
  }
}

.nav-text .menu_category-link {
  position: relative;
  display: block;
  padding: 15px 30px;
  border-bottom: 1px solid transparent;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .nav-text .menu_category-link {
    display: inline-block;
    padding: 0;
    font-size: inherit;
    font-weight: 700;
  }
}

.nav-text .menu_category-link:hover {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .nav-text .menu_category-link:hover {
    border-color: currentColor;
  }
}

.user-nav {
  position: absolute;
  display: none;
  margin-left: auto;
  white-space: nowrap;
}

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

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

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

.header_service-menu_item {
  width: 100%;
}

@media (min-width: 1024px) {
  .header_service-menu_item {
    width: auto;
  }
}

.header_service-menu_item--lang .language-selector {
  display: block;
  font-size: 14px;
}

.header_service-menu_item--lang .language-selector .dropdown-toggle {
  display: block;
  padding: 8px 25px 8px 15px;
}

@media (min-width: 1024px) {
  .header_service-menu_item--lang .language-selector {
    width: auto;
    font-size: inherit;
  }
  .header_service-menu_item--lang .language-selector .dropdown-toggle {
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
  .header_service-menu_item--lang .language-selector .dropdown-toggle::after {
    color: #000;
  }
}

.header_service-menu_item--lang .language-selector a:hover {
  text-decoration: none;
  border: 0;
}

.header_service-menu_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px;
}

.header_navigations {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  height: 100vh;
  width: 85%;
  max-height: 100vh;
  white-space: nowrap;
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  overflow-y: auto;
  z-index: 101;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border-right: 1px solid #999;
  will-change: transform;
}

.header_navigations[aria-expanded="true"] {
  display: block;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media (min-width: 1024px) {
  .header_navigations[aria-expanded="true"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header_navigations[aria-expanded="true"] ~ .header_navigations-overlay {
  display: block;
}

@media (min-width: 1024px) {
  .header_navigations[aria-expanded="true"] ~ .header_navigations-overlay {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header_navigations {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: auto;
    height: auto;
    padding-top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    background-color: transparent;
    border: none;
    overflow: visible;
  }
}

.header_navigations-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  background-color: #666;
}

.header_navigations .dropdown-menu {
  position: static;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #999;
}

@media (min-width: 1024px) {
  .header_navigations .dropdown-menu {
    position: absolute;
    top: 20px;
    border: 1px solid #d8d8d8;
  }
}

.header_navigations .dropdown-menu a {
  padding: 8px 25px 8px 15px;
  font-size: 11px;
  -webkit-transition: background-color 0.4s linear;
  -o-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}

@media (min-width: 1024px) {
  .header_navigations .dropdown-menu a {
    color: #000;
    background-color: #fff;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.back-to-shop_link {
  display: inline-block;
  padding: 0;
  font-weight: 700;
}

.back-to-shop_link span {
  border-bottom: 1px solid transparent;
}

.back-to-shop_link:hover {
  text-decoration: none;
}

.back-to-shop_link:hover span {
  text-decoration: none;
  border-bottom-color: currentColor;
}

.back-to-shop_link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e90e";
  position: relative;
  display: inline-block;
  top: -1px;
  margin-right: 2px;
  vertical-align: middle;
  font-size: 13px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header_navigations .back-to-shop {
  border-top: 1px solid #fff;
}

.header_navigations .back-to-shop .back-to-shop_link {
  display: block;
  padding: 8px 25px 8px 15px;
}

.header_navigations .back-to-shop .back-to-shop_link:hover {
  border-bottom-color: transparent;
}

.header_navigations .back-to-shop .back-to-shop_link::before {
  font-size: 13px;
}

@media (min-width: 1024px) {
  .header_navigations .back-to-shop {
    display: none;
  }
}

.language-selector {
  width: 100%;
}

@media (min-width: 1024px) {
  .language-selector {
    position: absolute;
    right: 30px;
    width: auto;
    font-weight: 700;
  }
}

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

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

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

.user-info > [role="button"] {
  min-width: 0;
  padding: 0;
  border: 0;
  color: #000;
  white-space: nowrap;
}

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

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

[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 {
  display: inline-block;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  vertical-align: middle;
}

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

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

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

.footer {
  border-top: 1px solid #ccc;
  margin-top: 60px;
}

.footer .footer_newsletter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 35px;
  margin-top: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer .footer_newsletter {
    max-width: 750px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.footer .footer_newsletter-title {
  padding-bottom: 16px;
  text-align: center;
  font-size: 20px;
  line-height: 1.14;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .footer .footer_newsletter-title {
    font-size: 30px;
  }
}

.footer .footer_newsletter-input_label {
  margin-bottom: 7px;
}

.footer .footer_newsletter-input {
  margin-bottom: 20px;
  padding: 10px 15px;
  width: 100%;
  background: 0 0;
  border: 1px solid #ccc;
  color: #252525;
  text-transform: none;
  letter-spacing: normal;
  line-height: 24px;
  font-size: 16px;
  outline: 0;
}

.footer .footer_newsletter-subtitle {
  margin-top: 10px;

  font-size: 1rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .footer_newsletter-subtitle {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer .footer_newsletter-privacy {
  justify-content: center;
  font-size: 14px;
}

.footer .footer_newsletter-privacy a {
  margin-left: 5px;
  border-bottom: 1px solid #999;
  color: #999;
}

.footer .footer_newsletter-buttons_group {
  margin: 20px auto;
}

.footer .footer_newsletter-button {
  display: inline-block;
  padding: 8px 10px 7px;
  min-height: 35px;
  min-width: 120px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 0.5px solid #000;
  border-radius: 15px;
  background-color: transparent;
  font-size: 13px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .footer .footer_newsletter-button {
    padding: 13px 18px;
    min-height: 30px;
    min-width: 90px;
    line-height: 3px;
    font-size: inherit;
  }
}

.footer .footer_newsletter-button:hover {
  background-color: #000;
}

.footer .footer_newsletter-button:hover a {
  color: #fff;
}

/* .l-footer_navigation {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 50px 16px 42px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer_navigation {
    justify-content: center;
    padding: 39px 30px;
  }
}

@media (min-width: 960px) {
  .footer_navigation {
    justify-content: space-between;
    align-items: flex-start;
  }
} */

.footer_navigation_countrylang {
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .footer_navigation_countrylang_wrapper {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .footer_navigation_countrylang {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #c4c4c4;
    justify-content: center;
    padding-top: 15px;
  }
}



@media (min-width: 768px) {
  .footer_navigation_countrylang {

  }
}

@media (min-width: 960px) {
  .footer_navigation_countrylang {

  }
}


.footer_social_wrapper{
  display: flex;
  column-gap: 10px;
}

.footer_social-icon,
.footer_social-icon::before {
  margin: 0 !important;
}

.footer_social-icon::before {
  font-size: 14px !important;
}


.footer-categories {
  padding-top: 10px;
  padding-left: 17px;
  padding-right: 17px;
  border-top: 1px solid #ccc;
}

@media (min-width: 768px) {
  .footer-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 40px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 40px;
  }
}

.footer-categories_title {
  font-size: 14px;
  font-weight: 400;
}



@media (max-width: 767px) {
  .footer-categories_column:nth-child(-n+3) {
    border-bottom: 1px solid #c4c4c4;
  }
  .footer-categories_title {
    padding: 15px 0;
    margin-bottom: 0;
  }

  .footer-categories_title::after {
      font-family: Icons;
      font-style: normal;
      font-variant: normal;
      font-weight: normal;
      speak: none;
      text-decoration: none;
      content: "\e901";
      display: block;
      float: right;
  }

  .footer-categories_column.open .footer-categories_title::after {
      content: '\e900';
  }
}

.footer-categories_list {
  display: flex;
  flex-flow: column;
  row-gap: 15px;
}

@media (min-width: 768px) {
  .footer-categories_title {
    margin-bottom:20px;
  }
  .footer-categories_column {
    width: 25%;
  }
  .footer-categories_column.open .footer-categories_list {
    max-height: none !important;
    /* stylelint-disable-line */
  }
}
.footer-categories_column.open {
  padding-bottom: 15px;
}
.footer-categories_column.open .categories_title::after {
  content: "";
}

.footer-categories_column.close .footer-categories_list {
  max-height: 0 !important;
  /* stylelint-disable-line */
}

@media (min-width: 768px) {
  .footer-categories_column.close .footer-categories_list {
    max-height: none !important;
    /* stylelint-disable-line */
  }
}
@media (max-width: 768px) {
  .footer-categories_list {
    max-height: 0;
    text-align: left;
    line-height: 25px;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }
}


.footer-categories_item {
  /* padding-top: 13px; */
}

.footer-categories_item a {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.94;
  letter-spacing: normal;
  text-align: left;
}

.l-scroll_to_top {
  position: fixed;
  display: block;
  padding: 5px;
  top: 90%;
  right: 15px;
  text-align: center;
  z-index: 100;
  background: #252525;
  opacity: 0;
  border-radius: 22px;
  line-height: 1;
  color: #999;
  font-size: 9px;
}

@media (min-width: 768px) {
  .l-scroll_to_top {
    top: 50%;
    right: 10px;
    background: none;
  }
  .l-scroll_to_top:hover {
    color: #000;
  }
  .l-scroll_to_top:hover .b-scroll_to_top {
    border-color: #000;
  }
  .l-scroll_to_top:hover .b-scroll_to_top::before {
    color: #000;
  }
}

.l-scroll_to_top .scroll_to_top_text {
  margin: 5px auto;
}

.l-scroll_to_top.h-opaque {
  opacity: 0.5;
}

@media (min-width: 768px) {
  .l-scroll_to_top.h-opaque {
    opacity: 0.9;
  }
}

.b-scroll_to_top {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (min-width: 768px) {
  .b-scroll_to_top {
    border: 1px solid #ccc;
    border-radius: 50%;
  }
}

.b-scroll_to_top::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  font-size: 32px;
  color: #fff;
}

@media (min-width: 768px) {
  .b-scroll_to_top::before {
    color: #ccc;
    font-size: 22px;
  }
}

.footer_description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer_description {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: 20px 36px;
    font-size: 10px;
    font-weight: 700;
  }
}

.footer_description-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 50%;
}

@media (min-width: 768px) {
  .footer_description-socials {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.footer_description-social_icon_facebook,
.footer_description-social_icon_twitter,
.footer_description-social_icon_instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}

@media (min-width: 768px) {
  .footer_description-social_icon_facebook,
  .footer_description-social_icon_twitter,
  .footer_description-social_icon_instagram {
    margin-left: 28px;
  }
}

.footer_description-social_icon_facebook::before,
.footer_description-social_icon_twitter::before,
.footer_description-social_icon_instagram::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  font-size: 18px;
}

@media (min-width: 768px) {
  .footer_description-social_icon_facebook::before,
  .footer_description-social_icon_twitter::before,
  .footer_description-social_icon_instagram::before {
    margin-right: 10px;
  }
}

.footer_description-social_icon_facebook span,
.footer_description-social_icon_twitter span,
.footer_description-social_icon_instagram span {
  padding-top: 3px;
}

.footer_description-social_icon_facebook::before {
  content: "\e902";
}

.footer_description-social_icon_twitter::before {
  content: "\e904";
}

.footer_description-social_icon_instagram::before {
  content: "\e903";
}

.footer_description-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .footer_description-categories {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-38%);
    -ms-transform: translateX(-38%);
    transform: translateX(-38%);
  }
}

.footer_description-category {
  padding-right: 10px;
}

.footer_description-category:not(:first-child)::before {
  content: "|";
  padding-right: 10px;
}

.footer_description-mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.footer_description-mobile_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  padding: 15px;
  border-top: 1px solid #ccc;
}

.footer_description-mobile_item:last-child {
  padding: 0;
}

.footer_description-mobile_item:last-child a {
  padding: 15px 30px;
}

.footer_description-mobile_item:last-child a:not(:last-child) {
  border-right: 1px solid #ccc;
}

.footer_description-signature {
  padding: 20px 15px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.94;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .footer_description-signature {
    font-size: 0.95rem;
    padding: 0;
    border: none;
    text-align: left;
  }
}

/***** Breadcrumbs *****/
.breadcrumbs-container {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  font-family: "Futura PT Book", helvetica, arial, sans-serif;
}

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

.breadcrumbs li {
  font-size: 14px;
  text-transform: uppercase;
  display: inline;
  max-width: 450px;
  color: #333;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "/";
  /* content: ""; */
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  top: 1px;
  margin: 0 2px;
  font-size: 14px;
  color: #000;
}

.breadcrumbs li a:hover,
.breadcrumbs li a:active,
.breadcrumbs li a:focus {
  border-bottom: solid 1px #000;
  text-decoration: none;
}

.breadcrumbs li:visited {
  color: #000;
}

.breadcrumbs li.last {
  display: none;
}

@media (min-width: 1024px) {
  .breadcrumbs li.last {
    display: inline;
  }
}

/***** Search field *****/
.search-container {
  width: 100%;
}
@media (min-width: 768px) {
  .search-container {
    width: 48%;
  }
}

.search {
  position: relative;
  margin: 0 auto 20px auto;
}

/* @media (min-width: 768px) {
  .search {
    margin: 0 auto;
  }
} */

.search input[type="search"] {
  line-height: 35px;
  width: 100%;
  padding-left: 20px;
  padding-right: 40px;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}

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

.search input[type="search"]:focus {
  border: 1px solid rgba(8, 8, 8, 0.3);
}

.search::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\e93a";
  position: absolute;
  right: 20px;
  background-color: #fff;
  color: #272727;
  font-size: 18px;
}

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

/***** Hero component *****/
.hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 436px;
  padding: 0 15px;
  background-image: url(/hc/theming_assets/01HZPQ4FEFVM3NKQENQH3R45NE);
  background-position: center;
  background-size: cover;
  text-align: center;
  overflow-x: scroll;
}

@media (min-width: 768px) {
  .hero {
    padding: 0 20px;
    height: 448px;
    overflow-x: inherit;
  }
}

.hero.section {
  margin-bottom: 0;
}

.hero-search {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  left: 0;
}

.hero-title {
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    line-height: 36px;
  }
}

.hero .top_buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  padding: 10px 5px 0;
  width: 100%;
  list-style: none;
}

.hero .top_buttons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  max-width: 310px;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .hero .top_buttons-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: none;
  }
}

.hero .top_buttons-item:last-child {
  padding-right: 10px;
}

@media (min-width: 768px) {
  .hero .top_buttons-item:last-child {
    padding-right: 5px;
  }
}

.hero .top_buttons-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 10px 7px;
  min-height: 61px;
  background-color: #fff;
  text-align: left;
}

@media (min-width: 768px) {
  .hero .top_buttons-link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    width: auto;
    min-height: 42px;
    text-align: center;
  }
}

.hero .top_buttons-link span {
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0 20px 0 0;
}

.hero .top_buttons-link::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 12px;
}

.hero .top_buttons-link:hover,
.hero .top_buttons-link:focus,
.hero .top_buttons-link:active {
  text-decoration: none;
}

.hero .search_topics {
  margin-top: 33px;
  width: 100%;
}

.hero .search_topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .hero .search_topics-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: none;
    min-width: auto;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .hero .search_topics-list.slick-initialized {
    margin: 0 auto;
    max-width: 656px;
  }
}

.hero .search_topics-list.slick-initialized .slick-slide {
  padding-right: 20px;
}

.hero .search_topics-list.slick-initialized .slick-slide:last-child {
  padding-right: 0;
}

.hero .search_topics-item {
  padding: 0 10px;
}

.hero .search_topics-item:first-child {
  padding-left: 0;
}

.hero .search_topics-item:last-child {
  padding-right: 20px;
}

@media (min-width: 768px) {
  .hero .search_topics-item:last-child {
    padding-right: 0;
  }
}

.hero .search_topics-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 42px;
  padding: 0 20px;
  border-radius: 40px;
  background-color: #fff;
  text-transform: uppercase;
  font-stretch: normal;
  white-space: nowrap;
}

.hero .search_topics-item a:hover,
.hero .search_topics-item a:focus,
.hero .search_topics-item a:active {
  text-decoration: none;
}

.hero-button_down {
  position: absolute;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: -26px;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hero-button_down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hero-button_down::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 30px;
}

.page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0;
}

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

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

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

.page-header h1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-header-description {
  margin: 0 0 30px;
  font-weight: 400;
  word-break: break-word;
}

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

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

.sub-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 5px 15px 0;
}

@media (min-width: 768px) {
  .sub-nav {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 45px 40px 35px;
    padding: 20px 0 15px;
  }
}

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

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

.sub-nav.m-article-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 5px 15px 0;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .sub-nav.m-article-nav {
    margin: 5px 36px 0;
  }
}

@media (min-width: 1024px) {
  .sub-nav.m-article-nav {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 45px 36px 35px;
    padding-bottom: 15px;
  }
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.l-knowledge_base-title {
  margin-bottom: 40px;
  line-height: 1;
  text-align: center;
}

.l-knowledge_base .f-select-wrapper {
  display: block;
}

@media (min-width: 768px) {
  .l-knowledge_base .f-select-wrapper {
    display: none;
  }
}

.b-knowledge_base-list {
  display: none;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .b-knowledge_base-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -15px;
  }
}

.b-knowledge_base-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 300px;
  flex: 1 0 300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 30px;
  max-width: 300px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
}

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

.b-knowledge_base-item-internal {
  background-color: transparent;
  border: 1px solid rgba(8, 8, 8, 0.3);
}

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

.b-knowledge_base-item-internal a {
  color: #000;
}

.b-knowledge_base-item .b-knowledge_base-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  height: 64px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  border: 1px solid rgba(8, 8, 8, 0.3);
}

.b-knowledge_base-item .b-knowledge_base-link span {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.b-knowledge_base-item .b-knowledge_base-link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-right: 15px;
  font-size: 19px;
}

.b-knowledge_base-item .b-knowledge_base-link::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  right: -8px;
  font-size: 30px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.b-knowledge_base-item .b-knowledge_base-link:hover,
.b-knowledge_base-item .b-knowledge_base-link:focus,
.b-knowledge_base-item .b-knowledge_base-link:active {
  background-color: #000;
  border-color: #000;
  color: #fff;
  text-decoration: none;
}

.b-knowledge_base-item:nth-child(1) .b-knowledge_base-link::before {
  content: "";
  font-size: 21px;
}

.b-knowledge_base-item:nth-child(2) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(3) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(4) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(5) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(6) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(7) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(8) .b-knowledge_base-link::before {
  content: "";
}

.b-knowledge_base-item:nth-child(9) .b-knowledge_base-link::before {
  content: "";
}

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

/***** Bottom section in homepage *****/
.l-bottom_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 -15px;
  padding-top: 60px;
  border-top: solid 1px rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .l-bottom_block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 960px;
    margin: 0 auto;
  }
}

.l-suggested_article {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 60px;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .l-suggested_article {
    -webkit-box-flex: 11;
    -ms-flex-positive: 11;
    flex-grow: 11;
    margin-bottom: 0;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .l-suggested_article {
    -webkit-box-flex: 9;
    -ms-flex-positive: 9;
    flex-grow: 9;
  }
}

.l-suggested_article-title {
  margin-bottom: 25px;
}

/***** Promoted articles *****/
.promoted-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-direction: column;
  flex-direction: column;
}

.promoted-articles-item {
  padding-right: 0;
}

@media (min-width: 768px) {
  .promoted-articles-item {
    padding-right: 30px;
    max-width: 593px;
  }
}

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

.promoted-articles-item .article-title {
  display: inline-block;
  margin-bottom: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: solid 1px transparent;
}

.promoted-articles-item .article-title:hover {
  text-decoration: none;
  border-bottom: solid 1px #000;
}

@media (min-width: 768px) {
  .promoted-articles-item .article-title {
    font-size: 14px;
  }
}

.promoted-articles-item .icon-lock::before {
  vertical-align: baseline;
}

.promoted-articles-item .item-text {
  padding-bottom: 20px;
  margin: 0;
  color: #666;
}

.promoted-articles-button {
  padding: 0;
  line-height: 15px;
  text-transform: uppercase;
  border-bottom: solid 1px #000;
  font-size: 14px;
}

.promoted-articles-button:hover,
.promoted-articles-button:active,
.promoted-articles-button:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  .promoted-articles-button {
    font-size: 14px;
  }
}

/* @media (min-width: 768px) {
  .b-quick_links {
    -webkit-box-flex: 5;
    -ms-flex-positive: 5;
    flex-grow: 5;
  }
}

@media (min-width: 1024px) {
  .b-quick_links {
    -webkit-box-flex: 7;
    -ms-flex-positive: 7;
    flex-grow: 7;
  }
} */

.b-quick_links-title {
  margin-bottom: 30px;
  padding: 0 20px 20px 20px;
  text-transform: none;
  border-bottom: 1px solid #ccc;
  font-size: 1.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .b-quick_links-title {
    padding: 0 0 20px 0;
    margin-bottom: 18px;
  }
}

.b-quick_links-list {
  list-style: none;
}

.b-quick_links-item {
  position: relative;
  padding: 10px 10px 10px 0;
  color: #666;
}

/* @media (min-width: 768px) {
  .b-quick_links-item {
    display: block;
  }
} */

/* .b-quick_links-item::before {
  content: counter(step-counter) ".";
  position: absolute;
  display: none;
  margin-right: 5px;
} */

/* @media (min-width: 768px) {
  .b-quick_links-item::before {
    display: block;
  }
} */

/* .b-quick_links-item:last-child .b-quick_links-link {
  border-bottom: solid 1px rgba(8, 8, 8, 0.3);
} */

/* @media (min-width: 768px) {
  .b-quick_links-item:last-child .b-quick_links-link {
    border-bottom: none;
  }
} */

.b-quick_links-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5px 18px 20px;
  font-size: 1.125rem;
  border-bottom: solid 1px #c4c4c4;
}

@media (min-width: 768px) {
  .b-quick_links-link {
  }
}

.b-quick_links-link span {
  color: #222;
}

.b-quick_links-link::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding-left: 20px;
  font-size: 28px;
  color: #000;
}

@media (min-width: 768px) {
  .b-quick_links-link::after {
    font-size: 20px;
  }
}

.b-quick_links-link:hover,
.b-quick_links-link:active,
.b-quick_links-link:focus {
  text-decoration: none;
}

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

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  overflow: auto;
}

.recent-activity-item-parent {
  font-size: 14px;
}

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

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

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

.recent-activity-item-meta {
  margin: 15px 0 0;
  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 {
  display: inline-block;
  color: #333;
  font-size: 10px;
  font-weight: 400;
}

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

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

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

.recent-activity-item-comment span::before {
  content: "\1F4AC";
  display: inline-block;
  padding-right: 3px;
  color: #fff;
  font-size: 12px;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 770px;
}

.category-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.category-content .page-header {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin: 40px 0 25px;
}

.category-content .page-header h2 {
  font-size: 22px;
}

@media (min-width: 768px) {
  .category-content .page-header h2 {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .category-content .page-header {
    margin: 0 0 30px;
  }
}

.category-back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .category-back-link {
    font-size: 14px;
  }
}

.category-back-link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e93d";
  position: relative;
  margin-right: 7px;
  font-size: 14px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.category-back-link:focus,
.category-back-link:active,
.category-back-link:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .category-back-link {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.section-tree {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  margin: 0 -15px 80px;
}

@media (min-width: 768px) {
  .section-tree {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0;
  }
}

.section-tree .section {
  margin: 0;
}

.section-tree .section:last-child .section-tree-title a {
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

.section-tree-title {
  margin-bottom: 0;
  font-weight: normal;
}

.section-tree-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 15px;
  min-height: 99px;
  font-size: 16px;
  color: #000;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
  text-transform: none;
}

@media (min-width: 768px) {
  .section-tree-title a {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0;
    padding: 20px 0;
    min-height: 83px;
  }
}

.section-tree-title a span {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.section-tree-title a::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e93d";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 20px;
  font-size: 30px;
}

.section-tree-title a:hover,
.section-tree-title a:focus,
.section-tree-title a:active {
  text-decoration: none;
}

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

/***** Section pages *****/
.sticky-group {
  position: sticky;
  top: 150px;
}

.section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .section-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    column-gap: 100px;
  }
}

.section-sidebar {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .section-sidebar {
    border-top: 1px solid rgba(8, 8, 8, 0.3);
  }
}
@media (min-width: 1024px) {
  .section-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    max-width: 450px;
    height: auto;
    border-right: 1px solid rgba(8, 8, 8, 0.3);
  }
}

.section-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .section-content {
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .section-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
    max-width: 775px;
    padding: 0 40px 0 20px;
  }
}

@media (min-width: 1200px) {
  .section-content {
    padding: 0;
  }
}

.section-content .page-header h2 {
  font-size: 22px;
  text-transform: uppercase;
  line-height: normal;
}

@media (min-width: 768px) {
  .section-content .page-header h2 {
    font-size: 24px;
  }
}

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

.section-back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
  font-size: 12px;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .section-back-link {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .section-back-link {
    margin-bottom: 35px;
  }
}

.section-back-link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e93d";
  position: relative;
  margin-right: 7px;
  font-size: 14px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.section-back-link:focus,
.section-back-link:active,
.section-back-link:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .section-back-link {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

/***** Article pages *****/

.article-list-item {
  margin-bottom: 0;
  font-weight: normal;
}

.article-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 15px;
  min-height: 99px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
  text-transform: none;
}

@media (min-width: 768px) {
  .article-list-item a {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0;
    padding: 20px 0;
    min-height: 83px;
  }
}

.article-list-item a span {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.article-list-item a::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e93d";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 20px;
  font-size: 30px;
}

.article-list-item a:hover,
.article-list-item a:focus,
.article-list-item a:active {
  text-decoration: none;
}

.article-list-item:last-child a {
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

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

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

.section-list-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  font-size: 14px;
}

.section-list-item:first-child {
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

.section-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}

.see-all-sections-trigger {
  display: block;
  padding: 15px;
  cursor: pointer;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  display: none;
}

/***** Article *****/
.l-article_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .article {
    padding: 0 20px;
  }
}

@media (min-width: 1024px) {
  .article {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 45%;
    flex: 1 0 45%;
    max-width: 775px;
    padding: 0 40px 0 20px;
  }
}

@media (min-width: 1200px) {
  .article {
    padding: 0;
  }
}

.article-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    column-gap: 100px;
  }
}

.article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 40px;
}

.article-header h2 {
  font-size: 22px;
  line-height: 34px;
}

@media (min-width: 768px) {
  .article-header h2 {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .article-header {
    margin-top: 0;
  }
}

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

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

@media (min-width: 768px) {
  .article-title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    /* Take entire row */
  }
}

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

.article [role="button"] {
  -ms-flex-negative: 0;
  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;
  vertical-align: middle;
}

.article-body {
  margin-bottom: 20px;
  font-size: 16px;
  font-family: "Futura PT Book", Helvetica, Arial, sans-serif;
}

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

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

[dir="rtl"] .article-body ul,
[dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

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

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

.article-body a:visited {
  color: #000;
}

.article-body code {
  padding: 0 5px;
  margin: 0 2px;
  background: #f7f7f7;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 3px;
}

.article-body pre {
  padding: 10px 15px;
  background: #f7f7f7;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 3px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  padding: 0 15px;
  border-left: 1px solid rgba(8, 8, 8, 0.3);
  color: #333;
  font-style: italic;
}

.article-body > p {
  font-size: 16px;
  line-height: normal;
}

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

.article-content {
  word-wrap: break-word;
}

.article-footer .article-back-link {
  display: none;
}

@media (min-width: 1024px) {
  .article-footer .article-back-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.article-sidebar {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .article-sidebar {
    border-top: 1px solid rgba(8, 8, 8, 0.3);
  }
}
@media (min-width: 1024px) {
  .article-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    max-width: 450px;
    height: auto;
    border-right: 1px solid rgba(8, 8, 8, 0.3);
  }
}

.article-relatives {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .article-relatives {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.article-votes {
  padding: 50px 15px 55px;
  margin: 0 -15px;
  text-align: left;
}

@media (min-width: 1024px) {
  .article-votes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  }
}

.article-votes-question {
  text-transform: uppercase;
  line-height: 1.63;
  font-size: 14px;
}

@media (min-width: 768px) {
  .article-votes-question {
    font-size: 14px;
  }
}

.article-votes-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 15px;
}

.article-vote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 50px;
  margin-right: 10px;
  min-width: 153px;
  width: auto;
  background: transparent;
}

@media (min-width: 1024px) {
  .article-vote {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
}

.article-vote::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-right: 7px;
  font-size: 9px;
}

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

.article-vote::after {
  content: attr(title);
  /* Yes/No label*/
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-transform: uppercase;
}

.article-vote:focus,
.article-vote:active,
.article-vote:hover {
  background-color: #000;
  color: #fff;
}

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

.article-vote:last-child {
  margin-right: 0;
}

.article-vote-label {
  font-size: 14px;
}

.article-vote-up::before {
  content: "";
  position: relative;
  top: -2px;
  font-size: 12px;
}

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

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

.article-back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Futura PT Book", Arial, Helvetica, sans-serif;
}

@media (min-width: 768px) {
  .article-back-link {
    font-size: 14px;
  }
}

.article-back-link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e93d";
  position: relative;
  margin-right: 7px;
  font-size: 14px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.article-back-link:focus,
.article-back-link:active,
.article-back-link:hover {
  text-decoration: none;
}

.sidenav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 -15px;
}

@media (min-width: 1024px) {
  .sidenav-list {
    display: block;
    margin: 0;
  }
}

.sidenav-list + a {
  font-size: 16px;
  margin-top: 20px;
  display: block;
}

.sidenav-title {
  position: relative;
}

.sidenav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100px;
  padding: 20px 15px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  text-transform: none;

  font-family: "Futura PT Book", helvetica, arial, sans-serif;

}

@media (min-width: 1024px) {
  .sidenav-link {
    display: block;
    min-height: auto;
    margin-bottom: 10px;
    margin-right: 0;
    padding: 10px 20px;
    border-radius: 9px;
    border: 0;
  }
}

.sidenav-link::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "\e93d";
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-right: -5px;
  padding-left: 20px;
  font-size: 30px;
}

@media (min-width: 1024px) {
  .sidenav-link::after {
    display: none;
  }
}

.sidenav-link.current-article,
.sidenav-link:hover {
  text-decoration: none;
}

.sidenav-item.active .sidenav-link,
.sidenav-link.current-article,
.sidenav-link:hover {
  font-family: "Futura PT Demi", Arial, Helvetica, sans-serif;
}

@media (min-width: 1024px) {
  .sidenav-item.active .sidenav-link,
  .sidenav-link.current-article,
  .sidenav-link:hover {
    font-family: "Futura PT Demi", Arial, Helvetica, sans-serif;
  }
}

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

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

.b-contact_us {
  margin: 0 0 55px;
  line-height: 1.38;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .b-contact_us {
    margin: 55px 0 25px;
  }
}

.b-contact_us-link {
  margin-left: 5px;
  border-bottom: solid 1px currentColor;
}

.b-contact_us-link:focus,
.b-contact_us-link:active,
.b-contact_us-link:hover {
  text-decoration: none;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

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

.attachments .attachment-item::before {
  content: "\1F4CE";
  position: absolute;
  left: 0;
  top: 5px;
  color: #000;
  font-size: 12px;
}

[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: #333;
}

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

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

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

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

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

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

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

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

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

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

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

.comment-overview {
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

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

.comment-callout {
  display: inline-block;
  margin-bottom: 0;
  color: #333;
  font-weight: 400;
  font-size: 10px;
}

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

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

.comment-sorter .dropdown-toggle {
  color: #333;
  font-weight: 400;
  font-size: 10px;
}

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

.comment-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

@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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

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

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

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

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

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

@media (min-width: 768px) {
  .comment-labels {
    -ms-flex-preferred-size: auto;
    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: -webkit-box;
  display: -ms-flexbox;
  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: 1200px) {
  .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: #fff;
}

.comment-body {
  word-break: break-word;
  word-wrap: break-word;
  font-family: "Futura PT Demi", helvetica, arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

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

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

[dir="rtl"] .comment-body ul,
[dir="rtl"] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

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

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

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

.comment-body code {
  padding: 0 5px;
  margin: 0 2px;
  background: #f7f7f7;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 3px;
}

.comment-body pre {
  padding: 10px 15px;
  background: #f7f7f7;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 3px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  padding: 0 15px;
  border-left: 1px solid rgba(8, 8, 8, 0.3);
  color: #333;
  font-style: italic;
}

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

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

.vote a {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  font-size: 10px;
}

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

.topic-header .dropdown {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    display: inline-block;
    margin-right: 20px;
    padding: 0;
    border-top: 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"] {
  position: relative;
  padding: 0 10px 0 15px;
  width: 100%;
  line-height: 30px;
}

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

.community-follow [role="button"]:hover {
  background-color: #fff;
}

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

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

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

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

.community-follow [role="button"]::after {
  content: attr(data-follower-count);
  position: absolute;
  display: inline-block;
  right: 10px;
  margin-left: 15px;
  padding-left: 10px;
  border-left: 1px solid #000;
  color: #000;
}

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

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

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

.striped-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .striped-list-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.striped-list-info {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

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

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

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

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

.striped-list-count {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #333;
  font-weight: 400;
  font-size: 10px;
  text-transform: capitalize;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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,
.status-label-answered {
  text-transform: lowercase;
}

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

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

.post-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 1200px) {
  .post-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.post-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.post-content {
  font-family: "Futura PT Demi", helvetica, arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

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

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

.post-meta {
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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;
  margin: 20px 0 20px 20px;
  list-style-position: outside;
}

[dir="rtl"] .post-body ul,
[dir="rtl"] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

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

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

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

.post-body code {
  padding: 0 5px;
  margin: 0 2px;
  background: #f7f7f7;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 3px;
}

.post-body pre {
  padding: 10px 15px;
  background: #f7f7f7;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 3px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  padding: 0 15px;
  border-left: 1px solid rgba(8, 8, 8, 0.3);
  color: #333;
  font-style: italic;
}

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

.post-comment-count {
  color: #333;
  font-weight: 400;
}

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

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

.post-sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px 0;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
  text-align: center;
}

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

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

@media (min-width: 1200px) {
  .post-sidebar h5 {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  }
}

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

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

/* Navigation element that collapses on mobile */
.collapsible-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 45px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  border-top: 1px solid rgba(8, 8, 8, 0.3);
  overflow: hidden;
  font-size: 14px;
}

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

.collapsible-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  color: #000;
  line-height: 45px;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    margin-right: 30px;
    line-height: normal;
  }
}

@media (min-width: 768px) {
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
}

.collapsible-nav-list li a {
  display: block;
  color: #000;
  line-height: 45px;
}

@media (min-width: 768px) {
  .collapsible-nav-list li a {
    padding: 15px 0;
    text-decoration: none;
    line-height: normal;
  }
}

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

.collapsible-nav-list li[aria-selected="true"] {
  position: relative;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

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

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

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-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 {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 55px 15px 0;
}

@media (min-width: 768px) {
  .collapsible-sidebar {
    padding: 55px 20px 0;
    margin-left: 36px;
    min-height: 310px;
  }
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    padding: 0;
    max-width: 360px;
  }
  .collapsible-sidebar + .collapsible-sidebar {
    margin-top: 60px;
    min-height: 0;
  }
}

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

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

.collapsible-sidebar-title {
  margin-top: 0;
  line-height: 1.38;
  font-weight: 500;
  text-transform: uppercase;
}

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

.my-activities-sub-nav {
  margin-bottom: 30px;
  background-color: transparent;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

@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: #fff;
}

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

@media (min-width: 1200px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    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: 1200px) {
  .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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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 {
  margin-top: 30px;
  font-size: 10px;
}

@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 {
  padding: 0 20px;
  max-height: 40px;
  line-height: 40px;
}

@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: #000;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

.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 {
  display: inline-block;
  padding: 0 20px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  line-height: 2.34;
  text-align: center;
}

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

.subscriptions-unsubscribe a:hover {
  background-color: #ccc;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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: #333;
  font-size: 10px;
  font-weight: 400;
}

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

.no-activities {
  color: #333;
}

/***** Request *****/
.request-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .request-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

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

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

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

.request-main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  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: 1200px) {
  .request-main {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    min-width: 0;
  }
}

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

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

.request-main .comment-show-container {
  padding: 8px 25px;
  width: 100%;
  border-radius: 2px;
  border: 1px solid rgba(8, 8, 8, 0.3);
  color: #333;
  text-align: inherit;
}

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

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

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

.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 {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

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

.request-title {
  width: 100%;
}

@media (min-width: 1200px) {
  .request-title {
    margin-bottom: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  }
}

.request-sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

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

.request-sidebar h5 {
  position: relative;
  font-size: 12px;
  font-weight: 700;
}

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

.request-details {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  font-size: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@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: #000;
  text-decoration: none;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 10px 12px;
  font-size: 12px;
  color: #333;
}

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

.pagination-current {
  background-color: #fff;
}

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

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

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

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

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

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

.meta-group a,
.meta-group li,
.meta-group span {
  display: inline;
}

.meta-data {
  color: #333;
  font-size: 10px;
  font-weight: 400;
}

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

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.recent-activity-item-comment span::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,
.search-result-votes::before,
.search-result-meta-count::before {
  font-family: copenhagen-icons;
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.profile-header .profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 0;
}

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

[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 {
  word-break: break-word;
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  min-width: 0;
}

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

.profile-header .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .profile-header .options {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-preferred-size: auto;
    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"] {
  padding: 8px 20px;
  background-color: #fff;
  border: 0;
  color: #fff;
  line-height: normal;
  outline-color: #fff;
}

.profile-header .description {
  word-break: break-word;
  word-wrap: break-word;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 15px 0;
}

.profile-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-size: 10px;
}

.profile-stats .stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  margin-right: 10px;
  color: #333;
  font-weight: 400;
}

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

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

@media (min-width: 768px) {
  .profile-stats-activity {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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 {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

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

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

@media (min-width: 1200px) {
  .profile-stats-counters {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .profile-stats-counters .stat {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    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 {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

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

.profile-private-badge {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 5px 20px;
  border: solid 1px #fff;
  border-radius: 4px;
  color: #fff;
  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 {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

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

.profile-section {
  width: 100%;
}

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

.profile-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.profile-section-description {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 10px 0;
  color: #333;
  font-weight: 400;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

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

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

.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 {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: 20px;
    padding-top: 0;
    border-top: 0;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  word-break: break-word;
  word-wrap: break-word;
  position: relative;
  padding: 20px 0;
}

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

.profile-contribution-title {
  display: inline;
  margin: 0 0 5px;
  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 {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #ccc;
  font-family: copenhagen-icons;
  line-height: 25px;
}

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

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

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

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

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

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

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

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

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

[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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  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 {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
}

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

.profile-activity-description {
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

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

.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 {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: copenhagen-icons;
}

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

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

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

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

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

/***** Search results *****/
.search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .search-results {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.search-results-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

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

.search-results-list > li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

.search-results-list > li:first-child {
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

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

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

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

[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 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

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

.search-result-link {
  font-size: 12px;
  font-weight: 700;
  border-bottom: solid 1px transparent;
}

.search-result-link:hover {
  text-decoration: none;
  border-bottom: solid 1px #000;
}

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

/* Use bold to highlight for the rest of supported non-latin languages */
html[lang|="ar"] .search-result-description em,
html[lang|="bg"] .search-result-description em,
html[lang|="el"] .search-result-description em,
html[lang|="he"] .search-result-description em,
html[lang|="hi"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em,
html[lang|="ru"] .search-result-description em,
html[lang|="th"] .search-result-description em {
  font-weight: 700;
}

.l-request_container {
  padding: 20px 15px 0;
  margin: 40px auto 0;
  max-width: 883px;
}

@media (min-width: 768px) {
  .l-request_container {
    margin: 80px auto 0;
    padding: 20px 20px 0;
  }
}

.b-request_title {
  font-size: 32px;
}

.b-request_content-text {
  overflow: auto;
}

.b-request_content-text p {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 1rem;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .b-request_title,
  .b-request_content-text p {
    text-align: center;
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }
}

.l-request_form .request-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 740px;
}

.l-request_form .request-form .form-field:last-of-type {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 14px;
}

.l-request_form .request-form .form-field:last-of-type label {
  display: none;
}

.l-request_form .request-form .form-field:last-of-type .upload-dropzone {
  width: 153px;
  padding: 10px 15px;
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 15px;
  color: #000;
  cursor: pointer;
}

.l-request_form .request-form .form-field:last-of-type .upload-dropzone:hover,
.l-request_form .request-form .form-field:last-of-type .upload-dropzone:active,
.l-request_form .request-form .form-field:last-of-type .upload-dropzone:focus {
  background: #000;
  color: #fff;
}

.l-request_form .request-form .form-field:last-of-type .upload-dropzone span {
  display: none;
}

.l-request_form
  .request-form
  .form-field:last-of-type
  .upload-dropzone
  input[type="file"] {
  position: absolute;
  width: 153px;
  height: 50px;
  font-size: 0;
  z-index: 0;
}

.l-request_form
  .request-form
  .form-field:last-of-type
  .upload-dropzone
  input[type="file"]:focus {
  border: 1px solid #000;
}

.l-request_form
  .request-form
  .form-field:last-of-type
  .upload-dropzone
  .js-attach-file {
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.4;
}

.l-request_form .request-form .form-field:last-of-type .no-file-selected {
  font-size: 12px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .l-request_form .request-form .form-field:last-of-type .no-file-selected {
    width: 50%;
  }
}

.l-request_form .request-form .form-field:last-of-type .upload-pool {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  width: 100%;
  padding-right: 10px;
  margin-top: -20px;
  background: #fff;
  z-index: 1;
}

@media (min-width: 768px) {
  .l-request_form .request-form .form-field:last-of-type .upload-pool {
    position: absolute;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-top: 0;
    width: 50%;
    max-width: 300px;
  }
}

.l-request_form
  .request-form
  .form-field:last-of-type
  .upload-pool
  .upload-item {
  width: 100%;
  margin-top: 0;
}

.l-request_form .request-form .form-field input[type="text"] {
  padding: 0 11px;
  font-size: 16px;
}

.l-request_form .request-form .form-field:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.l-request_form .request-form .form-field:nth-of-type(2) {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.l-request_form .request-form .form-field:nth-of-type(3) {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.l-request_form .request-form .form-field:nth-of-type(4) {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.l-request_form .request-form .form-field:nth-of-type(5) {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.l-request_form .request-form .form-field:nth-of-type(6) {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.l-request_form .request-form .form-field:nth-of-type(7) {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.l-request_form .request-form .form-field:nth-of-type(8) {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.l-request_form .request-form .form-field:nth-of-type(9) {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.l-request_form .request-form .form-field:nth-of-type(10) {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.l-request_form .request-form .form-field.request_anonymous_requester_email {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
  margin-top: 25px;
}

@media (min-width: 1024px) {
  .l-request_form .request-form .form-field.request_anonymous_requester_email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.l-request_form .request-form footer {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.l-request_form .request-form footer input[type="submit"] {
  width: 153px;
  padding: 10px 15px;
  border: 1px solid #000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 15px;
  color: #000;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  background: #000;
  width: 100%;
}

.l-request_form .request-form footer input[type="submit"]:hover,
.l-request_form .request-form footer input[type="submit"]:active,
.l-request_form .request-form footer input[type="submit"]:focus {
  background: #000;
  color: #fff;
}

@media (min-width: 768px) {
  .l-request_form .request-form footer input[type="submit"] {
    width: auto;
  }
}

.l-request_bottom {
  max-width: 740px;
  margin: 0 auto;
}

.b-request_explanation {
  margin: 40px -15px 0;
  padding: 0 15px 50px;
  border-bottom: solid 1px rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .b-request_explanation {
    margin: 40px 0 0;
    padding: 0 0 50px;
  }
}

.b-request_explanation p {
  max-width: 425px;
  font-size: 14px;
}

.b-request_connection {
  margin: 60px 0;
}

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

.b-request_connection-title {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.b-request_connection-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.b-request_connection-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin: 0 10px 10px 0;
  width: calc(50% - 5px);
  min-height: 50px;
  max-width: none;
  border: solid 1px #000;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .b-request_connection-item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 10px;
    width: auto;
    max-width: 153px;
  }
}

.b-request_connection-item::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  margin-right: 7px;
  font-size: 14px;
}

.b-request_connection-item:hover,
.b-request_connection-item:active,
.b-request_connection-item:focus {
  text-decoration: none;
}

.b-request_connection-item:nth-child(2n) {
  margin-right: 0;
}

@media (min-width: 768px) {
  .b-request_connection-item.m-messenger,
  .b-request_connection-item.m-whatsup {
    display: none;
  }
}

.b-request_connection-item.m-chat::before {
  content: "";
}

.b-request_connection-item.m-phone::before {
  content: "";
}

.b-request_connection-item.m-whatsup::before {
  content: "";
  color: #25d366;
}

.b-request_connection-item.m-messenger::before {
  content: "";
  color: #2196f3;
}

.zEWidget-launcher {
  display: none;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.popup.is-visible {
  display: none;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

@media (min-width: 768px) {
  .popup.is-visible {
    display: block;
  }
}

.popup-container {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #d8d8d8;
  text-align: center;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15),
    0 4px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}

.popup-container::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  font-size: 24px;
}

.popup-content {
  font-size: 10px;
}

.popup-title {
  margin: 15px 0;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.popup-close::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
}

.popup-number:hover {
  text-decoration: none;
}

body > .notification {
  position: fixed;
  z-index: 10;
  top: 55px;
}

@media (min-width: 768px) {
  body > .notification {
    top: 95px;
  }
}

/* +++ Accordion +++ */
:root {
  --accordion-gap: 40px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
  align-items: start;
}

@media (max-width: 768px) {
  .accordion-header {
    flex-flow: column;
    gap: 20px;
  }
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

.accordion-container {
  display: grid;
  grid-template-columns: 100%;
  gap: var(--accordion-gap);
}
@media (min-width: 768px) {
  .accordion-container {
    grid-template-columns: repeat(
      2,
      calc(50% - calc(var(--accordion-gap) / 2))
    );
  }
}

.panel-heading.collapsed h6:after {
  /* symbol for "opening" panels */
  transform: rotate(0deg);
}

.panel-heading h6:after {
  font-family: Icons;
  content: "\e93d";
  float: right;
  color: inherit;
  font-size: 20px;
  transform: rotate(90deg);
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  color: inherit;
  text-transform: capitalize;
  line-height: 2.5rem;

  font-size: 1.125rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
}

.panel-title > a,
.panel-title {
  text-decoration: none;
  cursor: pointer;
  padding-left: 20px;
}

a.panel-heading {
  display: block;
}

.panel-body .article-list.promoted-articles {
  row-gap: 10px;
  padding: 20px 10px 20px 20px;
}
.panel-body .promoted-articles-item {
  text-transform: capitalize;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: normal;
  font-family: "Futura PT Book", helvetica, arial, sans-serif; 
}

.panel-red {
  border-bottom: 1px solid #cccccc !important;
}

.panel-red .panel-title a {
  color: #388800;
  font-weight: bold;
  font-size: 1em;
}
/* 
.panel-group .panel {
  margin-bottom: 16px !important;
} */

.icon-star::before {
  color: #388800;
  text-decoration: none;
}

i[class^="icon-"]:before {
  display: inline-block;
  text-decoration: none;
}

.panel .see-all-articles {
  color: rgb(255, 255, 255);
  text-decoration: none;
  border: none;
}

.panel .see-all-articles:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
  border: none;
}

.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
}

/* -- Contact Us --*/
.contact-us {
  display: flex;
  flex-flow: column;
}
@media (min-width: 768px) {
  .contact-us {
    gap: 60px;
    flex-flow: row;
  }
}

.contact-us__title h3 {
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000;
  text-wrap: nowrap;
}

@media (min-width: 768px) {
  .contact-us__content {
    width: min-content;
  }
}

.contact-us__intro {
  font-size: 16px;
  margin-top: 0;
}
.contact-us__store {
  font-size: 16px;
  color: #777;
}

.contact-us__nav {
  margin-top: 20px;
  display: flex;
  gap: 60px;
}

.contact-us__item {
}

.contact-us__link {
  font-size: 1.125rem;
  text-wrap: nowrap;
  font-weight: normal;

  /* text-shadow:
    -2px -2px white,
    -2px 2px white,
    2px -2px white,
    2px 2px white;
  padding-bottom: 4px; */
  background-size: 1px 1em;
  box-shadow:
    /* inset 0 -0.175em white, */ inset 0 -0.03em #000;
  display: inline;
}
.contact-us__item::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  /* content: ""; */
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 3px;
  font-size: 12px;
  top: 2px;
  color: #808080;
}

@media (max-width: 768px) {
  .contact-us__nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  .contact-us__item {
    flex-basis: calc(50% - 30px);
  }
}

/*-- Popular Link --*/
.popular-links {
}
.popular-links__header {
  margin-bottom: 30px;
  padding: 0 20px 20px 20px;
  text-transform: none;
  border-bottom: 1px solid #ccc;
  font-size: 1.875rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .popular-links__header {
    padding: 0 0 20px 0;
    margin-bottom: 18px;
  }
}

.popular-links__item {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-flow: column;
}

.popular-links__title {
  cursor: pointer;
  position: relative;
  padding: 0 5px 18px 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  font-size: 1.125rem;
}
.collapsed .popular-links__title {
  border-bottom-color: #c4c4c4;

  /* transition-timing-function: linear;
         transition-property: border-bottom-color;
         transition-duration: 0;
            transition-delay: .35s; */

  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0;
  -o-transition-duration: 0;
  transition-duration: 0;
  -webkit-transition-property: border-bottom-color;
  -o-transition-property: border-bottom-color;
  transition-property: border-bottom-color;
     -webkit-transition-delay: .35s;
          -o-transition-delay: .35s;
             transition-delay: .35s;
}

.collapsed .popular-links__title:after {
  /* symbol for "opening" panels */
  transform: rotate(0deg);
}

.popular-links__title:after {
  font-family: Icons;
  content: "\e93d";
  float: right;
  color: inherit;
  font-size: 20px;
  transform: rotate(90deg);
}

.popular-links__body {
  border-bottom: solid 1px #c4c4c4;
  padding-left: 20px;
  padding-right: 40px;
}
.popular-links__body.collapsing,
.popular-links__body.collapse.in {
  display: flex !important;
  flex-flow: column;
}
.popular-links__body p {
  font-size: 0.9rem;
  color: #222;
  font-weight: normal;
  margin-top: 5px;
  font-family: "Futura PT Book", helvetica, arial, sans-serif;
}
.popular-links__body a {
  font-size: 0.8rem;
  font-weight: normal;
  margin-bottom: 15px;
  display: block;
  justify-self: flex-end;
  align-self: flex-end;

  background-size: 1px 1em;
  box-shadow: /* inset 0 -0.175em white, */ inset 0 -0.03em #000;
}
