@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;700&family=Montserrat:wght@300;400;500;700&display=swap");

/* "Montserrat" font */
/* font-family: 'Montserrat', sans-serif; */
/* "Cormorant Garamond" font in page */
/* font-family: 'Cormorant Garamond', serif; */

@font-face {
  font-family: icons;
  src: url(/hc/theming_assets/01HZPFSGXC1K9XPVAJNPB6HS8P) format("woff"),
    url(/hc/theming_assets/01HZPFSGRT1040PXHBKGYYFEK9) format("truetype"),
    url(/hc/theming_assets/01HZPFSGM9N260VYV1JT3YTQ50) format("svg");
  font-weight: 400;
  font-style: normal;
}

.clearfix::after,
.l-footer-images::after,
.l-footer::after {
  content: "";
  display: table;
  clear: both;
}

/* 
###Navigation mixins
*/
/* 
###Text mixins
*/
/***** Base *****/
body {
  background-color: rgba(255, 255, 255, 1);
  color: #333;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}

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

body > main.m-header-sticky {
  margin-top: 75px;
  transition: transform 0.3s, margin-top 0.3s;
}

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

body > .notification {
  position: fixed;
  top: 68px;
  z-index: 100;
}

@media (min-width: 1024px) {
  body > .notification {
    top: 145px;
  }
}

body > .notification.m-header-sticky {
  top: 74px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  font-weight: 400;
}

h1 {
  font-size: 13px;
  font-weight: 500;
  line-height: 30px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
  }
}

h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

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

h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

@media (min-width: 768px) {
  h3 {
    font-size: 13px;
    text-transform: uppercase;
  }
}

h4 {
  font-size: 16px;
}

a {
  color: #333;
  font-size: 11px;
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 20px 0 0;
  font: 12px/24px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

input,
textarea {
  color: #333;
  font-size: 11px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

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

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

select {
  padding: 8px 30px 8px 10px;
  width: 100%;
  background: #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  outline: none;
  color: #333;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

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

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

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

.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 60px;
  }
}

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

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

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

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

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

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

.m-hidden {
  display: none !important;
}

/***** Buttons *****/
.button,
[role="button"] {
  display: block;
  width: 100%;
  padding: config(button_padding);
  cursor: pointer;
  color: #333;
  border: config(button_border);
  background: #fff;
  text-decoration: none;
  text-transform: config(button_text_transform);
  letter-spacing: config(button_letter_spacing);
}

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

.button:hover,
[role="button"]:hover {
  color: config(button_hover_color);
  background: config(button_hover_background);
  border-color: config(button_hover_background);
  text-decoration: none;
}

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

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

.table th,
.table th a {
  color: #333;
  font-size: 11px;
  font-weight: normal;
  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 #333;
}

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

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

.form-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
}

.form-field input {
  padding: 5px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
}

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

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

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

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

.form-field .nesty-input {
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
  border: 1px solid #ccc;
}

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

.form-field .nesty-input::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  position: absolute;
  align-self: center;
  right: 14px;
  top: 14px;
  font-size: 20px;
  color: #333;
  transform: rotate(90deg);
  z-index: 1;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid #ccc;
  text-decoration: none;
}

.form-field textarea {
  width: 96%;
  padding: 20px;
  vertical-align: middle;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .form-field textarea {
    width: 94.2%;
  }
}

@media (max-width: 576px) {
  .form-field textarea {
    width: 88% !important;
  }
}

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

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

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

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

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url(/hc/theming_assets/01HZPFSH21AN20XJYHGFHBPYMB) 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: 11px;
}

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

.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;
  align-self: center;
  top: 5px;
  right: 14px;
  font-size: 30px;
  transform: rotate(90deg);
  z-index: 1;
}

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

.header_only-mobile {
  display: none;
}

.header_only-mobile-menu-all {
  display: none;
}

.header-sticky {
  position: fixed;
  top: -55px;
  padding: 45px 0 25px;
  border-bottom: 1px solid #ccc;
}

.header-sticky .logo {
  position: absolute;
  padding: 0;
  width: 100%;
  transform: translate(0, -200px);
  opacity: 0;
}

.header-sticky .logo-mini {
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
  transform: translate(0, 0);
  opacity: 1;
}

.header-sticky .menu_category {
  padding-top: 38px;
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    display: block;
    padding-bottom: 0;
  }
  .header .header_only-mobile-menu-all {
    display: none;
  }
  .header .menu_category-link {
    font: 15px / 20px 'Montserrat', Arial, sans-serif;
  }
  .header .menu_category-link-sale {
    font: 15px / 20px 'Montserrat', Arial, sans-serif;
  }
  .header .menu_category-item {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 20px;
    vertical-align: top;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
  }
  .header .menu_category-item a {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .header .menu_category-item-welcome {
    padding: 0 0 54px 20px;
  }
  .header .menu_category-item-welcome a {
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: none;
  }
  .header .fa-user-o::before {
    padding-right: 5px;
    font-size: 16px;
  }
  .header .bottom-nav {
    position: relative;
    margin: 0 20px 40px;
    padding-bottom: 60px;
    bottom: 0;
  }
  .header .bottom-nav li {
    margin: 0 0 20px;
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: none;
  }
  .header .bottom-nav .fa {
    padding-right: 5px;
    font-size: 14px;
  }
  .header .dropdown-menu[aria-expanded="true"] {
    position: static;
    width: auto;
    box-shadow: none;
    border: 0;
  }
  .header .dropdown-menu[aria-expanded="true"] a {
    display: block;
    padding: 10px 0;
    font: normal normal 15px / 20px 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
  }
  .header .header_service-menu_item {
    padding: 17px 0;
    margin: 0 20px;
    width: auto;
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
  }
  .header .back-to-shop_link {
    padding-top: 7px;
  }
  .header .logo {
    display: none;
  }
  .header_only-mobile {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: solid 1px #ccc;
  }
  .header_only-mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    width: calc(100% - 60px);
    padding-top: 30px;
    background: #fff;
    text-align: left;
    overflow-x: hidden;
    z-index: 11;
  }
  .header_only-mobile-menu-all {
    display: block;
  }
  .header_only-mobile-menu-close {
    position: fixed;
    right: 0;
    padding: 14px;
  }
  .header_only-mobile-menu-close img {
    width: 30px;
    height: auto;
  }
  .header_only-mobile .burger {
    padding-top: 5px;
  }
  .header_only-mobile .burger img {
    width: 58%;
  }
  .header_only-mobile-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_only-mobile-logo a {
    display: inherit;
    width: 60%;
  }
  .header_only-mobile-logo img {
    width: 100%;
  }
}

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

@media (max-width: 768px) {
  .header_navigations {
    justify-content: center;
  }
  .header_navigations .dropdown-menu {
    position: static;
    padding: 0;
    border: none;
    background-color: #ddd;
  }
}

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

@media (max-width: 768px) {
  .header_navigations .dropdown-menu a {
    padding: 8px 25px 8px 15px;
    font-size: 11px;
    transition: background-color 0.4s linear;
  }
}

@media (max-width: 768px) and (min-width: 1024px) {
  .header_navigations .dropdown-menu a {
    color: #333;
    background-color: #fff;
    transition: none;
  }
}

.header_navigations_between {
  width: calc(50% - 150px);
}

@media (max-width: 768px) {
  .header_navigations_between {
    display: none;
  }
}

.header_service-menu-title {
  font-size: 0.72rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.dropdown-menu [role="menuitem"] {
  padding: 5px 0;
  margin-left: 0.5px;
  text-align: center !important;
}

.dropdown-menu-end {
  left: 0;
}

@media (min-width: 1024px) {
  .dropdown-menu-end {
    padding: 0;
  }
}

.menu_category {
  display: table;
  padding-top: 20px;
  margin: 0;
  width: 100%;
  font-size: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .menu_category {
    display: none;
  }
}

.menu_category-item {
  display: inline-block;
  margin: 0 14px;
  cursor: default;
}

@media (max-width: 768px) {
  .menu_category-item {
    display: block;
    margin: 20px;
  }
}

.menu_category-link {
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .menu_category-link {
    font-size: 14px;
  }
}

.menu_category-link:hover {
  color: rgba(174, 154, 99, 1);
  transition: 0.3s ease;
}

.logo {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 28px 40px 0;
  transition: transform 0.3s, opacity 0.3s;
  transform: translate(0, 0);
  z-index: 10;
}

.logo img {
  width: 250px;
}

.logo-mini {
  position: absolute;
  padding-top: 41px;
  margin-left: 40px;
  transform: translate(0, -200px);
  opacity: 0;
}

.logo-mini img {
  width: 150px;
  display: block;
}

.nav-text {
  margin-right: auto;
}

.nav-text--desktop {
  display: none;
}

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

.nav-text--mobile .menu_category {
  margin-bottom: 18px;
}

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

.nav-text .menu_category {
  display: flex;
  flex-wrap: wrap;
}

.nav-text .menu_category-item {
  width: 100%;
}

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

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

@media (min-width: 1366px) {
  .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-link {
  position: relative;
  display: block;
  padding: 8px 25px 8px 15px;
  color: #333;
  border-bottom: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
}

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

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

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

.nav-text .menu_category-mobile-title {
  padding: 8px 25px 8px 15px;
  font-size: 11px;
}

.nav-service {
  display: inline-block;
  margin-left: auto;
}

.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"] {
  right: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #d8d8d8;
}

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

.header_service-menu {
  display: block;
}

@media (min-width: 768px) {
  .header_service-menu {
    display: flex;
    margin-right: 10px;
  }
}

.header_service-menu_item {
  width: 100%;
  list-style-type: none;
}

@media (min-width: 1024px) {
  .header_service-menu_item {
    width: auto;
    line-height: 28px;
    border-bottom: transparent;
  }
}

.header_service-menu_item--lang .language-selector,
.header_service-menu_item--country .country-selector {
  display: block;
}

.header_service-menu_item--lang .language-selector .down-toggle,
.header_service-menu_item--country .country-selector .down-toggle {
  display: block;
  padding: 8px 25px 8px 15px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .header_service-menu_item--lang .language-selector,
  .header_service-menu_item--country .country-selector {
    width: auto;
  }
  .header_service-menu_item--lang .language-selector .dropdown-toggle,
  .header_service-menu_item--country .country-selector .dropdown-toggle {
    display: inline-block;
    margin-right: 10px;
    padding: 0;
    font: 10px / 16px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .header_service-menu_item--lang .language-selector .dropdown-toggle::after,
  .header_service-menu_item--country .country-selector .dropdown-toggle::after {
    font-family: Icons;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    speak: none;
    text-decoration: none;
    content: "";
    position: relative;
    display: inline-block;
    top: -3px;
    margin-right: 2px;
    vertical-align: middle;
    font-size: 10px;
    transform: rotate(180deg);
  }
}

.header_service-menu_item--lang .language-selector a,
.header_service-menu_item--country .country-selector a {
  font-size: 12px;
}

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

@media (max-width: 768px) {
  .header_service-menu_item--lang .language-selector .dropdown-toggle,
  .header_service-menu_item--country .country-selector .dropdown-toggle {
    display: block;
    text-transform: uppercase;
    font: 15px / 20px 'Montserrat', Arial, sans-serif;
  }
  .header_service-menu_item--lang .language-selector .dropdown-toggle::after,
  .header_service-menu_item--country .country-selector .dropdown-toggle::after {
    float: right;
  }
}

.header_service-menu_item--country {
  border-bottom: solid 1px #ccc;
}

@media (min-width: 768px) {
  .header_service-menu_item--country {
    border-bottom-width: 0;
  }
}

.back-to-shop {
  float: right;
}

.back-to-shop_link {
  display: inline-block;
  padding: 4px 0 8px 15px;
}

.back-to-shop_link span {
  border-bottom: 1px solid transparent;
  font: 10px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.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: "";
  position: relative;
  display: inline-block;
  top: -1px;
  margin-right: 2px;
  vertical-align: middle;
  font-size: 10px;
  transform: rotate(-90deg);
}

/***** 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: rgba(79, 78, 78, 1);
  white-space: nowrap;
}

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

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

[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: #333;
  border: 2px solid #fff;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.l-footer {
  background: #fff;
}

.l-footer-images {
  margin-top: 40px;
}

.l-footer-images img {
  width: calc(100% / 7);
  float: left;
}

@media (max-width: 768px) {
  .l-footer-images img {
    width: calc(100% / 3);
  }
}

@media (max-width: 768px) {
  .l-footer-images .mobile {
    display: none;
  }
}

.l-footer_newsletter-icon {
  margin-bottom: 11px;
  font-size: 19px;
}

.l-footer_newsletter-small-text-policy {
  padding: 0;
  font: 8px / normal "Brown STD regular", sans-serif;
  letter-spacing: 0.5px;
  text-transform: initial;
  border-color: #333;
  text-decoration: underline;
}

.l-footer_newsletter-small-text-policy:hover {
  text-decoration: none;
}

.l-footer_social-list {
  display: flex;
  justify-content: center;
}

.l-footer_social-item {
  padding-right: 38px;
}

.l-footer_social-link {
  font-size: 19px;
}

.l-footer_social-text {
  letter-spacing: 0.5px;
  font: 18px/24px 'Montserrat', Arial, sans-serif;
}

.l-footer_navigation {
  padding: 36px 40px 32px;
  clear: both;
}

@media (max-width: 768px) {
  .l-footer_navigation {
    padding: 0;
    border-bottom: 1px solid #f9f6f6;
  }
}

.l-footer_navigation-list {
  display: flex;
  justify-content: space-between;
  text-align: justify;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 768px) {
  .l-footer_navigation-list {
    display: flex;
    flex-direction: column;
  }
}

.l-footer_navigation-item {
  display: inline-block;
}

.l-footer_navigation-item-outlet {
  display: none;
}

@media (max-width: 768px) {
  .l-footer_navigation-item {
    padding: 15px 0;
    width: 100%;
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
    border-top: 1px solid #f9f6f6;
  }
  .l-footer_navigation-item-outlet {
    display: block;
    padding: 15px 0;
    border-top: 1px solid #f9f6f6;
  }
}

.l-footer_navigation-link {
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.l-footer_navigation-link-contact {
  font: normal normal 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  border-bottom: 1px solid #333;
}

@media (max-width: 768px) {
  .l-footer_navigation-link {
    padding-left: 20px;
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
  }
  .l-footer_navigation-link::after {
    font-family: Icons;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    speak: none;
    text-decoration: none;
    content: "";
    float: right;
    padding-right: 15px;
    font-size: 20px;
  }
}

.l-footer_bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 40px 33px;
}

@media (max-width: 768px) {
  .l-footer_bottom {
    flex-direction: column-reverse;
    padding: 0;
  }
}

.l-footer-copyright {
  width: 65%;
  float: left;
  font: 10px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .l-footer-copyright {
    padding: 20px 0;
    width: 100%;
    font: 10px / 14px 'Montserrat', Arial, sans-serif;
    text-align: center;
  }
}

.l-footer-copyright-mobile {
  display: none;
}

@media (max-width: 768px) {
  .l-footer-copyright-mobile {
    display: block;
    margin-left: 4px;
  }
}

.l-footer-copyright-desktop {
  display: block;
}

@media (max-width: 768px) {
  .l-footer-copyright-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .l-footer_misc_links {
    justify-content: space-between;
  }
}

.l-footer_misc_links-list {
  display: flex;
  margin: 0;
  padding: 1px 0 0;
  text-align: right;
}

@media (max-width: 768px) {
  .l-footer_misc_links-list {
    justify-content: space-between;
    border-bottom: 1px solid #f7f7f0;
  }
}

.l-footer_misc_links-link {
  text-transform: none;
  font: 10px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .l-footer_misc_links-link {
    display: flex;
    align-items: center;
    height: 50px;
    padding-bottom: 1px;
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
  }
}

.l-footer_misc_links-link:nth-child(2) {
  padding-right: 25px;
}

.l-footer_misc_links-link:last-child {
  padding-right: 25px;
}

@media (max-width: 768px) {
  .l-footer_misc_links-item {
    display: table-cell;
    height: 50px;
    width: calc(100% / 3);
    padding-bottom: 1px;
    font: normal normal 12px / 17px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    border-right: 1px solid #f9f6f6;
    vertical-align: middle;
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .l-footer_misc_links-item {
    display: flex;
    justify-content: center;
  }
}

.l-footer_misc_links-item-special-credits {
  display: none;
}

@media (max-width: 768px) {
  .l-footer_misc_links-item-special-credits {
    display: block;
  }
}

.l-footer_misc_links-item_separator {
  margin: 0 6px;
  font: 10px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .l-footer_misc_links-item_separator {
    display: none;
  }
}

.l-footer_second-block-wrapper {
  float: left;
  width: 100%;
  padding: 65px 0;
  text-align: center;
  background: #f3f3f3;
}

@media (max-width: 768px) {
  .l-footer_second-block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 65px 0 0;
  }
}

.l-footer-blocks-wrap {
  float: left;
  width: calc(100% / 3);
}

@media (max-width: 768px) {
  .l-footer-blocks-wrap {
    float: initial;
    width: auto;
    padding-bottom: 70px;
  }
}

.l-footer-blocks-wrap.social-block .l-footer_social-text-text,
.l-footer-blocks-wrap.social-block .contact-us-text,
.l-footer-blocks-wrap.contact-block .l-footer_social-text-text,
.l-footer-blocks-wrap.contact-block .contact-us-text {
  letter-spacing: 0.5px;
  font: 18px/24px 'Montserrat', Arial, sans-serif;
}

.l-footer-blocks-wrap.social-block .l-footer_social-text-icon,
.l-footer-blocks-wrap.social-block .contact-us-icon,
.l-footer-blocks-wrap.contact-block .l-footer_social-text-icon,
.l-footer-blocks-wrap.contact-block .contact-us-icon {
  margin-bottom: 11px;
  font-size: 19px;
}

.l-footer-blocks-wrap.social-block .l-footer_social-icon {
  margin: 0 0 11px;
  text-align: center;
  font-size: 19px;
}

.l-footer-blocks-wrap.social-block .l-footer_social-list {
  padding-top: 25px;
}

.l-footer-blocks-wrap .l-footer_navigation-link {
  display: inline-block;
  margin-top: 24px;
  padding: 0;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  border-color: #333;
  text-decoration: underline;
  text-transform: initial;
}

.l-footer-blocks-wrap .l-footer_navigation-link:hover {
  text-decoration: none;
  border-color: transparent;
}

.l-footer.newsletter-block .b-simple_newsletter p {
  margin: 0;
  font: 18px/24px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
}

.l-footer.newsletter-block .b-simple_newsletter-sections .f-label {
  display: inline-block;
  padding-left: 32px;
  width: 100%;
}

.l-footer.newsletter-block .b-simple_newsletter-sections .f-label-value {
  font: 700 12px / normal 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-transform: none;
}

.l-footer.newsletter-block .b-simple_newsletter-sections_label {
  font: 700 12px / normal 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.l-footer.newsletter-block .b-simple_newsletter-sections_wrapper {
  float: left;
  width: 330px;
  margin: 0 0 0 -8px;
}

.l-footer.newsletter-block
  .b-simple_newsletter-sections_wrapper
  .f-field.f-type-section1
  .l-footer.newsletter-block
  .b-simple_newsletter-sections_wrapper
  .f-field.f-type-section2 {
  width: 50%;
  float: left;
  text-align: center;
}

.l-footer.newsletter-block
  .b-simple_newsletter-sections_wrapper
  .f-field.f-type-section2 {
  margin-left: 20%;
  width: 30%;
}

.l-footer.newsletter-block
  .b-simple_newsletter-sections_wrapper
  .f-field-wrapper {
  position: relative;
  float: left;
  width: 100%;
}

.l-footer.newsletter-block .b-simple_newsletter-form {
  padding-top: 25px;
}

.b-simple_newsletter p {
  padding-bottom: 25px;
  font: 18px/24px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
}

.b-simple_newsletter-button {
  width: 160px;
  height: 50px;
  max-width: none;
  padding: 10px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 16px;
  color: #333;
  background: transparent;
  border: 1px solid #333;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all 0.2s ease-in;
}

@media (max-width: 768px) {
  .b-simple_newsletter-button {
    width: 265px;
    padding: 15px;
    font: normal 14px 'Montserrat', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
  }
}

.b-simple_newsletter-button:hover {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}

.b-simple_newsletter-button .l-footer_newsletter {
  position: relative;
  top: 18px;
}

.b-simple_newsletter-fieldset {
  position: relative;
  margin: 0 auto;
  width: 265px;
}

.b-simple_newsletter_action_button {
  position: absolute;
  right: 0;
  margin: 0;
  padding: 0 0 0 15px;
  border: none;
  background: none;
}

.b-simple_newsletter:hover {
  color: #333;
}

.b-simple_newsletter span {
  display: none;
}

.b-formsections_error {
  width: 100%;
  margin-top: 15px;
  text-align: center;
  color: #b6b6b6;
}

.f-email {
  width: 265px;
  height: 20px;
  margin: auto;
  padding: 0;
  background: 0;
  border: 0;
  border-bottom: 1px solid #333;
  color: #333;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}

.f-email:focus {
  border: 0;
  border-bottom: 1px solid #333;
}

.f-field {
  margin: 0;
}

.f-field .f-label {
  display: none;
}

.f-field .f-email {
  width: 100%;
  height: 20px;
  padding: 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #333;
  color: #333;
  font: 700 12px / normal 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.f-field .f-email:focus {
  background: none;
}

.f-field .f-error_message {
  width: 100%;
  text-align: left;
  color: #b6b6b6;
}

.scrol-top {
  position: fixed;
  display: block;
  bottom: 40px;
  width: 50px;
  height: 50px;
  right: 40px;
  margin-bottom: 96px;
  font-size: 0;
  text-align: center;
  text-decoration: none;
  z-index: 100;
  border-radius: 50%;
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  cursor: pointer;
}

@media (max-width: 768px) {
  .scrol-top {
    margin-bottom: 40px;
    right: 15px;
  }
}

.scrol-top .fa.fa-angle-up {
  display: block;
  color: #333;
  font-size: 25px;
  line-height: 50px;
}

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

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

.breadcrumbs li {
  display: inline;
  max-width: 450px;
  font-weight: 300;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  position: relative;
  align-self: center;
  top: 1px;
  margin: 0 2px;
}

.breadcrumbs li a {
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: initial;
}

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

.breadcrumbs li:visited {
  color: rgba(79, 78, 78, 1);
}

.breadcrumbs li.last {
  display: none;
}

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

/***** Search field *****/
.search {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .search {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .search {
    max-width: 656px;
  }
}

.search input[type="search"] {
  height: 55px;
  width: 100%;
  padding-left: 20px;
  padding-right: 40px;
  border: 1px solid rgba(8, 8, 8, 0.3);
  box-sizing: border-box;
  border-radius: 0;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

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

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

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

.search-full input[type="search"] {
  border: 1px solid #fff;
}

/***** Hero component *****/
body > main {
  border-top: solid 1px #ccc;
}

@media (max-width: 768px) {
  body > main {
    margin-top: 67px;
    border-top: 0;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 448px;
  background-image: url(/hc/theming_assets/01KJYT03FR7QDRWRBAVXYNVMG0);
  background-position: center;
  background-size: cover;
  text-align: center;
  overflow-x: scroll;
}

@media (max-width: 768px) {
  .hero {
    height: 480px;
  }
}

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

.hero.section {
  margin: 0 0 80px;
}

@media (max-width: 768px) {
  .hero.section {
    margin: 50px 0;
  }
}

@media (max-width: 576px) {
  .hero.section {
    margin: 63px 0;
  }
}

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

.hero-title {
  position: relative;
  margin-bottom: 17px;
  font: 55px/70px 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

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

.hero .top_buttons {
  position: absolute;
  display: flex;
  top: 0;
  padding: 10px 0;
  width: 100%;
  list-style: none;
  overflow-x: hidden;
}

.hero .top_buttons-item {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: left;
  max-width: 310px;
  padding: 0 5px;
}

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

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

.hero .top_buttons-item:first-child {
  padding-left: 10px;
}

.hero .top_buttons-link {
  display: flex;
  flex-grow: 1;
  min-height: 61px;
  padding: 0 20px;
  background-color: #fff;
  font-size: 11px;
  text-align: left;
}

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

.hero .top_buttons-link span {
  position: relative;
  align-self: center;
  padding: 0 20px 0 0;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

.hero .top_buttons-link::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  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: flex;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .hero .search_topics-list {
    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: flex;
  justify-content: center;
  flex-direction: column;
  height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(51, 51, 51, 1);
  font: 12px/18px 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  background-color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  transition: all 0.2s ease-in;
  cursor: pointer;
  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;
  background-color: rgba(174, 154, 99, 1);
  color: rgba(255, 255, 255, 1);
}

.hero-button_down {
  position: absolute;
  display: none;
  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: flex;
  }
}

.hero-button_down::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  align-self: center;
  font-size: 30px;
  transform: rotate(90deg);
}

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

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

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

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

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
  font: 18px/24px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}

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

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

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

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 15px 0;
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
    padding: 25px 25px 50px;
  }
}

.sub-nav li {
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: initial;
}

.sub-nav li::after {
  content: "-";
  position: relative;
  display: inline-block;
  padding: 0 4px;
  vertical-align: middle;
  font-size: 10px;
}

.sub-nav li:last-child::after {
  content: "";
}

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

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

.sub-nav.m-article-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 15px 0;
}

@media (min-width: 768px) {
  .sub-nav.m-article-nav {
    padding: 25px 25px 50px;
  }
}

@media (min-width: 1024px) {
  .sub-nav.m-article-nav {
    align-items: baseline;
    flex-direction: row;
  }
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.l-knowledge_base-title {
  margin-bottom: 40px;
  font: 20px/26px 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.5px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.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: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
  }
}

.b-knowledge_base-item {
  display: flex;
  flex: 1 0 300px;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 30px;
  max-width: 300px;
  box-sizing: border-box;
  color: #333;
}

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

.b-knowledge_base-item .b-knowledge_base-link {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 64px;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #9e9e9e;
  transition: all 0.2s ease-in;
}

.b-knowledge_base-item .b-knowledge_base-link span {
  flex-grow: 1;
  letter-spacing: 1px;
}

.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;
  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;
  align-self: center;
  right: -8px;
  font-size: 30px;
}

.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: rgba(174, 154, 99, 1);
  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;
}

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

.section h2.hero-title {
  margin-bottom: 40px;
  font-size: 50px;
}

@media (max-width: 768px) {
  .section h2.hero-title {
    font-size: 40px;
  }
}

/***** Bottom section in homepage *****/
.l-bottom_block {
  display: flex;
  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 {
    flex-direction: row;
    max-width: 960px;
    margin: 0 auto;
  }
}

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

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

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

.l-suggested_article-title {
  margin-bottom: 25px;
  font: 20px/26px 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-transform: uppercase;
}

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

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

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

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

.promoted-articles-item .article-title {
  display: inline-block;
  margin-bottom: 15px;
  font: 12px/16px 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: solid 1px transparent;
}

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

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

.promoted-articles-item .item-text {
  padding-bottom: 25px;
  color: #333;
  font-size: 14px;
  line-height: 1.75;
}

.promoted-articles-button {
  padding: 0;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  line-height: 15px;
  text-transform: uppercase;
  border-bottom: solid 1px #333;
}

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

.b-quick_links {
  flex-grow: 1;
}

@media (min-width: 768px) {
  .b-quick_links {
    flex-grow: 5;
  }
}

@media (min-width: 1024px) {
  .b-quick_links {
    flex-grow: 7;
  }
}

.b-quick_links-title {
  margin-bottom: 30px;
  padding: 0 20px;
  font: 20px/26px 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {
  .b-quick_links-title {
    padding: 0 15px;
  }
}

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

.b-quick_links-item {
  position: relative;
  padding: 0;
  color: #333;
  counter-increment: step-counter;
}

@media (min-width: 768px) {
  .b-quick_links-item {
    display: block;
    padding: 10px 0;
  }
}

.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: flex;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 74px;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  text-transform: uppercase;
  border-top: solid 1px rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .b-quick_links-link {
    padding: 0 0 0 20px;
    min-height: auto;
    text-transform: none;
    border: none;
  }
}

@media (max-width: 768px) {
  .b-quick_links-link {
    padding: 0 15px;
  }
}

.b-quick_links-link span {
  align-self: center;
}

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

.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: 16px;
}

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

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

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

.recent-activity-item-meta {
  margin: 15px 0 0;
  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: #666;
  font-size: 11px;
  font-weight: 300;
}

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

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

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

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

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

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

/***** Category pages *****/
.category-container {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 770px;
}

.category-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-content .page-header {
  order: 1;
  margin: 40px 0 25px;
}

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

.category-back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 35px;
  font-size: 10px;
  text-transform: uppercase;
  align-self: flex-start;
  order: 0;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.category-back-link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  position: relative;
  margin-right: 7px;
  font-size: 14px;
  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 {
    order: 3;
  }
}

.category-empty {
  order: 2;
}

.section-tree {
  order: 2;
  margin: 0 -15px;
}

@media (min-width: 768px) {
  .section-tree {
    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);
}

@media (max-width: 576px) {
  .section-tree .section:last-child .section-tree-title a {
    padding-left: 15px !important;
  }
}

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

.section-tree-title a {
  display: flex;
  justify-content: space-between;
  min-height: 99px;
  font-size: 13px;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
  text-transform: none;
}

@media (min-width: 768px) {
  .section-tree-title a {
    order: 3;
    margin: 0;
    min-height: 83px;
  }
}

@media (max-width: 768px) {
  .section-tree-title a {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .section-tree-title a {
    padding: 0 15px;
    min-height: 80px;
  }
}

.section-tree-title a span {
  align-self: center;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-tree-title a::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  align-self: center;
  margin-left: 20px;
  font-size: 30px;
  color: #333;
}

.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 *****/
.section-container {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 770px;
}

.section-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.section-content .page-header {
  order: 1;
  margin: 40px 0 25px;
}

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

.section-back-link {
  display: inline-flex;
  align-items: center;
  margin-top: 35px;
  font-size: 10px;
  text-transform: uppercase;
  order: 0;
  align-self: flex-start;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.section-back-link::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  position: relative;
  margin-right: 7px;
  font-size: 14px;
  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 {
    order: 3;
  }
}

.section-empty {
  order: 2;
}

.article-list {
  order: 2;
  margin: 0 -15px;
}

@media (min-width: 768px) {
  .article-list {
    order: 3;
    margin: 0;
  }
}

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

.article-list-item a {
  display: flex;
  justify-content: space-between;
  padding: 0;
  min-height: 99px;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

@media (min-width: 768px) {
  .article-list-item a {
    order: 3;
    margin: 0;
    min-height: 83px;
  }
}

@media (max-width: 768px) {
  .article-list-item a {
    padding-right: 8px;
    min-height: 80px;
  }
}

.article-list-item a span {
  align-self: center;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .article-list-item a span {
    padding-left: 15px !important;
  }
}

.article-list-item a::after {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  content: "";
  align-self: center;
  margin-left: 20px;
  font-size: 30px;
  color: #333;
}

.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: 16px;
}

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

.section-list-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

.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: flex;
  justify-content: center;
}

.article {
  flex: 1 0 auto;
  padding: 0 15px;
}

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

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

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

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

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

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

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

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

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

.article-title {
  font: 700 16px/20px 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  letter-spacing: 0.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .article-title {
    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"] {
  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 {
  font-size: 11px;
  line-height: 1.78;
}

.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: #666;
  font-style: italic;
}

.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: inline-flex;
    font: 12px / 16px 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

.article-sidebar {
  order: 1;
  flex: 1 0 auto;
  padding: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

@media (min-width: 1024px) {
  .article-sidebar {
    flex: 0 0 35%;
    order: 0;
    max-width: 660px;
    margin-bottom: 20px;
    height: auto;
    border: 0;
  }
}

.article-relatives {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid rgba(8, 8, 8, 0.3);
}

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

.article-votes {
  padding: 50px 15px 55px;
  margin: 0 -15px;
  text-align: left;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}

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

.article-votes-question {
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.63;
}

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

.article-vote {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  height: 50px;
  margin-right: 10px;
  max-width: 160px;
  width: 100%;
  color: #333;
  border: 1px solid #333;
  border-radius: 3px;
  transition: all 0.2s ease-in;
}

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

.article-vote::before {
  font-family: Icons;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  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*/
  align-self: center;
  text-transform: uppercase;
}

.article-vote:focus,
.article-vote:active,
.article-vote:hover {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
}

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

.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: inline-flex;
  align-items: center;
  margin-top: 35px;
  font-size: 10px;
  text-transform: uppercase;
}

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

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

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

.article .notification-alert {
  display: none;
  margin: 15px 0;
}

.sidenav-list {
  display: flex;
  flex-direction: column;
  margin: 0 -15px;
}

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

.sidenav-title {
  position: relative;
  font-size: 13px;
}

.sidenav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

@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: "";
  align-self: center;
  font-size: 30px;
  transform: rotate(-90deg);
}

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

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

@media (min-width: 1024px) {
  .sidenav-link.current-article,
  .sidenav-link:hover {
    background-color: #333;
    color: #fff;
  }
}

.sidenav-link:focus,
.sidenav-link:active,
.sidenav-link:hover {
  background-color: #333;
  color: #fff;
}

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

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

.b-contact_us {
  margin: 55px 0 25px;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.38;
  text-transform: uppercase;
}

.b-contact_us-link {
  margin-left: 5px;
  font-size: 13px;
  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: #333;
  font-size: 13px;
}

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

/***** 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: #666;
  font-size: 23px;
  text-align: center;
}

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

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

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

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

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

.comment-sorter .dropdown-toggle {
  color: #666;
  font-weight: 300;
  font-size: 11px;
}

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

.comment-wrapper {
  position: relative;
  display: flex;
}

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

@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: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

@media (min-width: 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: #333;
}

.comment-body {
  word-break: break-word;
  word-wrap: break-word;
  font-family: 'Montserrat', 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: #666;
  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: #666;
}

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

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

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

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

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

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

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

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  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: #666;
  font-size: 11px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow [role="button"][aria-selected="true"] {
  background-color: #333;
  color: rgba(255, 255, 255, 1);
}

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

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

.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;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
}

@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: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
}

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

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

.striped-list-title {
  margin-bottom: 10px;
  margin-right: 5px;
  color: rgba(79, 78, 78, 1);
}

.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 {
  justify-content: flex-start;
  color: #666;
  font-weight: 300;
  font-size: 11px;
  text-transform: capitalize;
}

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

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

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

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

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

@media (min-width: 768px) {
  .striped-list-number {
    display: block;
    color: #333;
    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: #333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

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

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

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

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

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

.post-content {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

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

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

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

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

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

.post-body ul,
.post-body ol {
  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: #666;
  font-style: italic;
}

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

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

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

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

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

@media (min-width: 1200px) {
  .post-sidebar {
    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: 600;
}

@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 {
  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 {
    flex-direction: row;
    height: auto;
    max-height: none;
    border: 0;
  }
}

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

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

.collapsible-nav-list li {
  order: 1;
  color: #333;
  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: #333;
  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 #d8d8d8;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px;
    text-decoration: none;
  }
}

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

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

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

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

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

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

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

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

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  position: relative;
  flex: 1;
  padding: 55px 15px 0;
}

@media (min-width: 768px) {
  .collapsible-sidebar {
    padding: 55px 25px 0;
  }
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    padding: 0;
    margin-left: 25px;
    max-width: 360px;
  }
}

.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;
  font: 14px/20px 'Montserrat', Arial, sans-serif;
  line-height: 1.38;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .collapsible-sidebar-title {
    padding-left: 0;
  }
}

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

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

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

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

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

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

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

@media (min-width: 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: flex;
  align-items: flex-end;
  flex-direction: column;
}

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

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

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

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

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

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

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

@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: rgba(255, 255, 255, 1);
}

.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: rgba(255, 255, 255, 1);
  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: #000;
  text-decoration: none;
}

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

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

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

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

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

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

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

.no-activities {
  color: #666;
}

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

@media (min-width: 1200px) {
  .request-container {
    align-items: flex-start;
    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 {
  flex: 1 0 auto;
  order: 1;
}

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

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

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

@media (min-width: 1200px) {
  .request-main {
    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: #666;
  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 #333;
}

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

.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 {
  flex: 1 0 auto;
  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 {
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
    background-color: #f7f7f7;
    border: 0;
    font-size: 11px;
  }
}

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

@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: 11px;
}

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

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

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

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

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

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

.request-form textarea {
  min-height: 120px;
  border: 1px solid #ccc;
}

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

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

.pagination li {
  display: inline-block;
  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: #333;
  text-decoration: none;
}

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

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

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

.pagination-current a,
.pagination-current span {
  color: rgba(255, 255, 255, 1);
}

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

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

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

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

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

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

.profile-avatar {
  position: relative;
  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: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

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

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

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

.profile-header .options [data-action="edit-profile"] {
  padding: 8px 20px;
  background-color: #333;
  border: 0;
  color: rgba(255, 255, 255, 1);
  line-height: normal;
  outline-color: #333;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-stats-counters {
    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 {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

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

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

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

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

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

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

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

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

.profile-nav {
  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: flex;
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    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 #f3f3f3;
}

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

.profile-contribution-list > .profile-contribution::before {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #cccccc;
  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: #999999;
}

.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 #d8d8d8;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #d8d8d8;
  }
}

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

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

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

.profile-activity-header .user-avatar {
  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: 600;
}

.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: rgba(255, 255, 255, 1);
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #cccccc;
  font-family: copenhagen-icons;
}

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

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

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

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

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

/***** Search results *****/
.search-results {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

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

.search-result .meta-group {
  align-items: center;
}

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

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

.search-result-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: solid 1px transparent;
}

.search-result-link:hover {
  text-decoration: none;
  border-bottom: solid 1px #333;
}

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

/* 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: 0 15px;
  margin: 160px auto 0;
  max-width: 734px;
}

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

@media (max-width: 768px) {
  .l-request_container {
    margin: 86px auto 0;
  }
}

.b-request_title {
  margin: 0 0 15px;
  font: 18px/24px 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333;
}

.b-request_content {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .b-request_content {
    margin-bottom: 55px;
  }
}

.b-request_content-text {
  overflow: auto;
}

.b-request_content-text p {
  margin: 0;
  letter-spacing: 2px;
  color: #333;
}

@media (min-width: 768px) {
  .b-request_content-text p {
    margin: 10px 0 30px;
  }
}

.form-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-field .nesty-input {
  padding: 18px;
  height: 50px;
  color: #333;
  background: #ddd;
  border: 1px solid #ccc;
  border-radius: 0;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  line-height: 10px;
  text-transform: none;
  vertical-align: middle;
}

.l-request_form .request-form .form-field input[type="text"] {
  padding: 5px 20px;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

.notification-inline {
  width: 98.9%;
}

@media (max-width: 768px) {
  .notification-inline {
    width: 98.3%;
  }
}

@media (max-width: 576px) {
  .notification-inline {
    width: 96.8%;
  }
}

.l-request_form .request-form {
  display: flex;
  flex-direction: column;
}

.l-request_form .request-form .form-field:last-of-type {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

@media (min-width: 768px) {
  .l-request_form .request-form .form-field:last-of-type {
    flex-direction: row;
  }
}

.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 {
  height: 50px;
  width: 100%;
  font: 12px/50px 'Montserrat', Arial, sans-serif;
  border: 1px solid #333;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  border-radius: 3px;
  transition: all 0.2s ease-in;
  order: 1;
  width: 100%;
  height: 48px;
}

@media (min-width: 768px) {
  .l-request_form .request-form .form-field:last-of-type .upload-dropzone {
    max-width: 160px;
  }
}

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

@media (min-width: 768px) {
  .l-request_form .request-form .form-field:last-of-type .upload-dropzone {
    width: 50%;
  }
}

.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"]:focus {
  border: 1px solid #000;
}

.l-request_form
  .request-form
  .form-field:last-of-type
  .upload-dropzone
  .js-attach-file {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 50px;
}

.l-request_form .request-form .form-field:last-of-type .no-file-selected {
  position: static;
  align-self: center;
  order: 2;
  margin-top: 10px;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .l-request_form .request-form .form-field:last-of-type .no-file-selected {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    margin-top: 0;
  }
}

.l-request_form .request-form .form-field:last-of-type .upload-pool {
  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 {
    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:nth-of-type(1) {
  order: 1;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(1) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(2) {
  order: 2;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(2) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(3) {
  order: 3;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(3) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(4) {
  order: 4;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(4) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(5) {
  order: 5;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(5) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(6) {
  order: 6;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(6) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(7) {
  order: 7;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(7) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(8) {
  order: 8;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(8) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(9) {
  order: 9;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(9) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field:nth-of-type(10) {
  order: 10;
}

@media (max-width: 576px) {
  .l-request_form .request-form .form-field:nth-of-type(10) {
    margin-top: 40px;
  }
}

.l-request_form .request-form .form-field.request_anonymous_requester_email {
  order: 6;
  margin-top: 25px;
}

.l-request_form .request-form footer {
  order: 12;
}

.l-request_form .request-form footer input[type="submit"] {
  height: 50px;
  width: 100%;
  font: 12px/50px 'Montserrat', Arial, sans-serif;
  border: 1px solid #333;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  border-radius: 3px;
  transition: all 0.2s ease-in;
  color: #fff;
  background: #333;
}

@media (min-width: 768px) {
  .l-request_form .request-form footer input[type="submit"] {
    max-width: 160px;
  }
}

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

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

.b-request_explanation {
  margin: 40px -15px 0;
  padding: 0 15px 50px;
  color: #000;
  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;
}

.b-request_connection {
  margin-top: 60px;
}

.b-request_connection-title {
  margin-bottom: 30px;
  font: 12px/16px 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.b-request_connection-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .b-request_connection-list {
    justify-content: flex-start;
  }
}

.b-request_connection-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 0;
  float: left;
  margin-bottom: 10px;
  width: calc(50% - 7px);
  min-height: 48px;
  max-width: none;
  border: solid 1px #000;
  text-transform: uppercase;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .b-request_connection-item {
    flex-grow: 1;
    margin: 0 10px 10px 0;
    width: auto;
    max-width: 160px;
  }
}

.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: 16px;
}

.b-request_connection-item:hover,
.b-request_connection-item:active,
.b-request_connection-item:focus {
  text-decoration: none;
}

.b-request_connection-item.m-count:nth-child(2n):not(.m-popup) {
  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;
}

.b-request_connection-item.m-window {
  display: none;
}

@media (min-width: 1024px) {
  .b-request_connection-item.m-window {
    display: flex;
  }
}

.b-request_connection-item.m-popup {
  display: flex;
}

@media (min-width: 1024px) {
  .b-request_connection-item.m-popup {
    display: none;
  }
}

.zEWidget-launcher {
  display: none;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.2);
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.popup.is-visible {
  display: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

@media (min-width: 768px) {
  .popup.is-visible {
    display: block;
  }
}

.popup-container {
  position: relative;
  top: 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;
  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: 14px;
}

.popup-title {
  margin: 15px 0;
  font-weight: 500;
  font-size: 16px;
  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 {
  font-size: 14px;
  text-decoration: none;
}

/**** Footer ****/
footer {
  margin-top: 1rem;
}

.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  justify-content: space-between;
}

.footer__logo {
  flex: 0 0 100%;
}

.footer__copyright {
  font-size: 0.7rem;
  line-height: 24px;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.footer__wrapper,
.footer__copyright {
  padding-left: 15px;
  padding-right: 15px;
}

.newsletter__wrapper {
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  padding: 60px 0;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer__wrapper,
  .footer__copyright {
    padding-left: 40px;
    padding-right: 40px;
  }
  .newsletter__wrapper {
    border-top: 1px solid rgba(8, 8, 8, 0.3);
  }
}

.newsletter__inner {
  text-align: center;
}

.newsletter__heading {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', Times, serif;
  font-size: 1.2rem;
}
.newsletter__text {
  font-family: $title-font;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.newsletter__cta {
  margin-top: 20px;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  height: 42px;
  padding: 0 20px;
  background-color: transparent;
  border: 1px solid #9e9e9e;
  font: 12px/18px 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s ease-in;
  cursor: pointer;
  font-stretch: normal;
  white-space: nowrap;
}

.newsletter__cta:hover,
.newsletter__cta:focus,
.newsletter__cta:active {
  text-decoration: none;
  background-color: rgba(174, 154, 99, 1);
  color: rgba(255, 255, 255, 1);
}

.footer__nav {
  display: flex;
  column-gap: 4rem;
  row-gap: 1rem;
}
.footer__service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-width: 25%;
}

.footer__divider {
  height: 1px;
  background-color: rgba(8, 8, 8, 0.3);
  width: 100%;
}

.footer__heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer__nav-item {
  line-height: 2rem;
}

.footer__heading--inline {
  display: block;
  width: 100px;
}

footer .dropdown {
  display: flex;
  gap: 50px;
  padding-bottom: 17px;
}

@media (min-width: 768px) {
  .desktop-hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__nav {
    flex-direction: column;
    margin-bottom: -1rem;
  }

  .footer__nav .footer__heading::after {
    font-family: Icons;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    speak: none;
    text-decoration: none;
    content: "";
    display: block;
    float: right;
  }
  .footer__nav .open .footer__heading::after {
    content: "";
  }

  .l-footer_links-list {
    max-height: 0;
    text-align: left;
    line-height: 25px;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }

  .footer__localization {
    margin-bottom: -1rem;
  }

  .footer__social .footer__heading {
    text-align: center;
    margin-bottom: 2rem;
  }
}

/**** Social ****/
@media (min-width: 768px) {
  .social__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .social__list {
    padding: 0 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .social__list > * {
    flex: 1 1 15%;
    display: flex;
    justify-content: center;
  }
}
