   @charset "UTF-8";
/***** Base *****/

* {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #333333;
font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

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

a:hover, a:active, a:focus {
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table td {
  display: block;
}

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

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

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

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

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

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

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
      font-size: 12px;
    HEIGHT: 36PX;
}

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

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

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

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

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

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

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

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

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

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

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

.form footer {
  padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

.breadcrumbs li a,.breadcrumbs li  {
  color: #666;
  display: inline;
  font-weight: 300;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
   font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.13;
  letter-spacing: normal;
    color: #757575;
  
}


.breadcrumbs li + li {
  color: #222021;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-header h1 {
    flex-grow: 1;
    margin-bottom: 10px;
    font-size: 30px;
    color: #44444A;
    letter-spacing: 0;
    line-height: 36px;
    margin-bottom: 16px;
    text-align: center;
    margin-top: 40px;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 1024px) {
  .blocks-list {
    margin: 0 85px;
        max-width: 980px;
    margin: 0 auto;
  }
}



.blocks-item {
  box-sizing: border-box;
  display: flex;
  flex: 1 0 200px;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

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



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

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

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

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

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

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

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

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

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

.promoted-articles-item:last-child a {
  border: 0;
}

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

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

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

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

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

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

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/***** Category pages *****/
.category-container {
  display: flex;
}

.category-container {
    display: flex;
    flex-direction: row-reverse;
}

.category-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .category-content {
/*     flex: 0 0 65%;
    flex: 0 0 55%; */
    flex: 0 0 100%;
  }
}

.section-tree:not(.article-list) {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

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

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

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

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

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

.section-tree .see-all-articles {
    display: block;
    padding: 15px 0;
    width: 70%;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 500;
    color: #f25824;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
}

.article-list-item a {
  color: #333333;
}

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

/***** Section pages *****/
.section-container {
  display: flex;
}

.section-content {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-info {
  max-width: 100%;
}

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

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

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

[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 {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-votes {

  padding: 30px 0;
  text-align: center;
}

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

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

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

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

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

.article-vote:hover {
  background-color: #f25824;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidenav-item {
  border-radius: 4px;
  color: #333333;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

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

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

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

.comment-ccs {
  display: none;
}

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

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

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

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

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

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

[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 {
  margin: 0;
}

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

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

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

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

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

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

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

.vote a {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  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;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[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 {
  margin: 0;
}

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

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

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

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

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

.post-footer {
  align-items: center;
  display: flex;
  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 {
  color: #f25824;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.subscriptions-unsubscribe a:hover {
  background-color: #a6310a;
  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: 13px;
  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-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.request-title {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination * {
  display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.meta-group * {
  display: inline;
}

.meta-data {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-section {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1024px) {
  .search-results-column {
  }
}

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

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

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

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

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

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

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


.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.fa-twitter:before{content:"\f099";}
.fa-facebook:before{content:"\f09a";}
.fa-youtube:before{content:"\f167";}
.fa-instagram:before{content:"\f16d";}
.cs-font{font-family:'cleversoft'!important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;-webkit-font-feature-settings:"liga";-moz-font-feature-settings:"liga=1";-moz-font-feature-settings:"liga";-ms-font-feature-settings:"liga" 1;font-feature-settings:"liga";-webkit-font-variant-ligatures:discretionary-ligatures;font-variant-ligatures:discretionary-ligatures;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
.clever-icon-arrow-regular:before{content:"\c075";}
@media (min--moz-device-pixel-ratio: 1.3),
  (-o-min-device-pixel-ratio: 2.6/2),
  (-webkit-min-device-pixel-ratio: 1.3),
  (min-device-pixel-ratio: 1.3),
  (min-resolution: 1.3dppx){
img{width:auto;}
}
.template-index .container{padding:0;}


.dropdown-sub.sub-1:before {
    content: "";
    background: #fff;
    width: 1000%;
    height: 100%;
    position: absolute;
    left: -340%;
    top: 0;
    z-index: -5;
  ms-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
}


.dropdown-toggle::after {
    color: #888888;
    content: "\A0\A0\E75C";
    content: none;
    display: inline-block;
    font-family: "entypo";
    vertical-align: middle;
}

.dropdown-sub.sub-1 {
    overflow-x: hidden;
}
section.section.hero:before {
    content: url('');
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    opacity: .1;
  top: 0;
}

section.section.hero {
    position: relative;
}

section.section.hero {
    height: 500px;
  overflow: hidden;
}

.hero-inner {
    padding: 100px 0;
}

input[type="submit"] {
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase; /* Text style for "SEARCH" */
    letter-spacing: 0.72px;
      height: 36px;
      width: 120px;
      margin-left: 10px;
  font-size: 12px;
}

input#query {
    color: #666666;
    font-size: 17px;
    font-weight: 300;
    line-height: 27.08px; /* Text style for "Search Sup" */
    letter-spacing: 0.04px;
      padding-left: 20px;
    text-align: center;
}
.hero-inner {
    text-align: center;
}

.hero-inner h1 {
    font-size: 72px;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 72px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 12px;
    text-align: center;
    color: #ffffff;
}



.rest-categories li:nth-child(-n+4) {
    display: none !important;
}

a.blocks-item-link img {
    width: 113px;
}

a.blocks-item-link > div {
}


a.blocks-item-link div img:nth-child(2) {
    display: none;
}


a.blocks-item-link:hover div img:nth-child(2) {
    display: initial;
}


a.blocks-item-link:hover div img:nth-child(1) {
    display: none;
}

section.section.knowledge-base > h2 {
    color: #4d4d4d;
    font-size: 21px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 130px;
}

section.section.knowledge-base > h2 {
    color: #4d4d4d;
    font-size: 21px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 130px;
}

ul.rest-categories:before {
    background: #f7f7f7;
    width: 200%;
    left: -50%;
    height: 100%;
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
}

ul.rest-categories {
    position: relative;
    padding: 60px 0;
    margin-top: 110px;
}

main {
    overflow-x: hidden;
}

li.cat-rest.blocks-item a h4 {
    color: #898884;
    font-size: 19px;
    font-weight: 400;
    margin: 0;
}

li.big-cat.blocks-item {
    border: 1px solid #f2f3f3;
    /* border-color: red; */
    border-radius: 8px;
    /* width: 320px; */
    min-height: 180px;
}


ul.rest-categories > span {
    color: #f55a18;
    font-size: 19px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 0px;
      cursor: pointer;
}

ul.rest-categories > span:nth-child(2) {
    display: none;
}

ul.rest-categories li {
    display: none;
}
ul.rest-categories.showlis li {
    display: initial;
}

ul.rest-categories.showlis > span:first-child {
    display: none;
}

ul.rest-categories.showlis > span:nth-child(2) {
    display: block;
      margin-bottom: 40px;
}
ul.rest-categories.showlis li {
    display: block;
    margin: 0;
    padding: 10px 10px;
}

.pop-art li {
    display: inline-block;
    max-width: 33%;
    padding-right: 2%;
}

.pop-art {
    padding-bottom: 120px;
}

.pop-art h3 {
    color: #f55a18;
    font-size: 19px;
  font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding-top: 25px;
}

.pop-art h2 {
    color: #4d4d4d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 21px;
    font-weight: 300;
    margin: 50px auto 60px;
}

.pop-art span {
    color: #f55a18;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase; /* Text style for "JUL 24, 20" */
    letter-spacing: 0.17px;
    position: relative;
    padding-left: 70px;
      display: inline-block;
    margin-top: 20px;
}

.pop-art span:before {
    content: '';
    width: 60px;
    height: 1px;
    background: #f55a18;
    position: absolute;
    top: 8px;
    left: 0;
}

.pop-art p {
    color: #808080;
    font-size: 17px;
    font-weight: 400;
    line-height: 27.08px; /* Text style for "No matter" */
    letter-spacing: 0.04px;
}

.pop-art li a {
    color: #f55a18;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase; /* Text style for "CONTINUE R" */
    letter-spacing: 0.2px;
    margin-top: 10px;
    display: inline-block;
}

.instagram-bottom img {width: 100%; padding: 0 2px; }

.still h4 {
    color: #999999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase; /* Text style for "STILL NEED" */
    letter-spacing: 0.28px;
}

.still {
    text-align: center;
    position: relative;
    padding: 74px 20px;
}

.still:before {
    background: #f7f7f7;
    width: 200%;
    left: -50%;
    height: 100%;
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
}

.still h3 {
    color: #4d4d4d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 21px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 30px;
}

.still a {
    background: #f25824;
    border-radius: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.72px;
    height: 47px;
    width: 140px;
    margin-left: 10px;
    padding: 0 5px;
    color: #fff;
    width: 187px;
    height: 47px;
    display: inline-block;
    line-height: 47px;
}

.still a:hover {
    background: #a6310a;
}

.sub-nav input[type="submit"] {
    border-radius: 0 100px 100px 0;
    margin: 0;
    background: #f55a18 !important;
    position: relative;
    left: -5px;
    top: -1px;
}

.sub-nav input#query {
    border-radius: 30px;
}

p.page-header-description {
    font-size: 16px;
    color: #999999;
    letter-spacing: 0;
    line-height: 24px;
    font-style: normal;
    text-align: center;
    margin-bottom: 90px;
}

.category-container, .section-container {
    margin-bottom: 150px;
}

li.article-list-item {
    margin: 0;
}


h3.section-tree-title {
    margin-bottom: 5px;
}

li.article-list-item {
    padding: 0px;
}

.sub-nav input[type="submit"]:hover {
    background: #a6310a !important;
}

.search-results {
    margin-bottom: 150px;
}

ol.breadcrumbs.search-result-breadcrumbs li,ol.breadcrumbs.search-result-breadcrumbs a {
    color: #f55a18 !important;
}

.search-result-description em {
    background: rgb(245, 90, 24);
    padding: 0 6px;
    color: #fff;
    border-radius: 3px;
}

.search-result-description {}

a.search-result-link {
    font-size: 24px;
    color: #44444A;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 20px;
    display: inline-block;
}

li.search-result
 >ul,li.search-result
 >div {
    padding-left: 10px;
}

.search-results-list > li:first-child {
    padding-top: 20px;
}

@media (max-width: 768px) {
nav.sub-nav form {
    text-align: center;
    margin-top: 30px;
    margin-bottom: -10px;
}
 .sub-nav input[type="submit"] {
    width: 90px;
    padding: 0;
}
  
}




/* section canvas */



#offcanvas section {
  display: block;
}
#offcanvas a {
  background-color: transparent;
}
#offcanvas a:active, #offcanvas a:hover {
  outline: 0;
}
@media print {
  #offcanvas *, section#offcanvas :after, section#offcanvas :before {
    color: #000 !important;
    text-shadow: none !important;
    background: 0 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  section#offcanvas a {
    text-decoration: underline;
  }
  section#offcanvas a:visited {
    text-decoration: underline;
  }
  section#offcanvas a[href]:after {
    content: " (" attr(href) ")";
  }
  section#offcanvas h3 {
    orphans: 3;
    widows: 3;
    page-break-after: avoid;
  }
}
section#offcanvas *, section#offcanvas :after, section#offcanvas :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
section#offcanvas a {
  color: #337ab7;
  text-decoration: none;
}
section#offcanvas a:focus, section#offcanvas a:hover {
  color: #23527c;
  text-decoration: underline;
}
section#offcanvas a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
section#offcanvas h3 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}
section#offcanvas *, section#offcanvas * {
  -webkit-font-smoothing: antialiased;
}
section#offcanvas h3 {
  font-weight: 400;
  line-height: 1.25em;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 1.25em;
}
section#offcanvas a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  outline: none;
  cursor: pointer;
}
section#offcanvas a:hover {
  text-decoration: none;
}
section#offcanvas a:focus {
  text-decoration: none;
  text-decoration: none;
}
section#offcanvas a:link, section#offcanvas a:hover, section#offcanvas a:active {
  outline: none;
  cursor: pointer;
}
#offcanvas {
  opacity: 0;
  overflow: hidden;
  display: none;
}
@media (max-width: 1024px) {
   #offcanvas {
    left: 0;
    margin: 0;
    position: fixed;
    top: 0;
    transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    -moz-transform: translateY(-200%);
    -o-transform: translateY(-200%);
    -o-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    height: 100%;
  }
}
section#offcanvas .megamenu-canvas .icon-lists .icon-col {
  width: 20%;
  float: left;
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  text-align: center;
}
section#offcanvas .megamenu-canvas .icon-lists .icon-col:nth-of-type(5n+1) {
  border-left: none;
}
section#offcanvas .megamenu-canvas .icon-lists .icon-col a {
  display: block;
  padding: 0;
}
section#offcanvas .megamenu-canvas .icon-lists .icon-col a .icon-format {
  font-size: 36px;
  padding-top: 40px;
  padding-bottom: 16px;
}
section#offcanvas .megamenu-canvas .icon-lists .icon-col a .title-format {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 15px;
  padding-bottom: 40px;
}
section#offcanvas .megamenu-canvas .icon-lists:after {
  display: block;
  content: "";
  clear: both;
}
section#offcanvas .megamenu-canvas .color-lists {
  text-align: center;
  margin: 32px 0;
}
section#offcanvas .megamenu-canvas .color-lists h3 {
  font-size: 16px;
  color: #484848;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 16px;
}
section#offcanvas .megamenu-canvas .color-lists a {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 8px;
}
section#offcanvas a {
  color: #898884;
}
section#offcanvas a:hover {
  color: #f55a19;
}
@media (max-width: 1024px) {
body #offcanvas {
    display: block;
  }
}
@media (max-width: 676px) {
  section#offcanvas .megamenu-canvas .icon-lists .icon-col {
    width: 50%;
    border-left: 1px solid #eeeeee !important;
  }
}
section#offcanvas [class^="icon-"]:before, section#offcanvas [class*=" icon-"]:before {
  font-family: "satechi-complete" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
      font-size: 36px;
}
section#offcanvas .icon-icon-usbc:before {
  content: "\65";
}
section#offcanvas .icon-icon-stands:before {
  content: "\69";
}
section#offcanvas .icon-icon-headphones:before {
  content: "\6d";
}
section#offcanvas .icon-icon-automotive:before {
  content: "\73";
}
section#offcanvas .icon-icon-eu:before {
  content: "\78";
}
section#offcanvas .icon-icon-rechargeable:before {
  content: "\79";
}
section#offcanvas .icon-icon-presentation:before {
  content: "\4e";
}
section#offcanvas .icon-icon-keyboads:before {
  content: "\50";
}
section#offcanvas .icon-icon-hubs-and-docks:before {
  content: "\51";
}
section#offcanvas .icon-icon-travel:before {
  content: "\30";
}

section{display:block;}
@media print{
*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important;}
}

html *,body *{-webkit-font-smoothing:antialiased;}
#offcanvas{opacity:0;overflow:hidden;display:none;}
@media (max-width: 1024px){
body #offcanvas.active{overflow-y:auto;}
#offcanvas{left:0;margin:0;position:fixed;top:0;transform:translateY(-200%);-webkit-transform:translateY(-200%);-moz-transform:translateY(-200%);-o-transform:translateY(-200%);-o-transition:all 0.5s ease 0s;-moz-transition:all 0.5s ease 0s;-webkit-transition:all 0.5s ease 0s;width:100%;z-index:1000;}
#offcanvas.active{transform:translateY(0px);transition:transform 0.5s ease 0s;-o-transition:transform 0.5s ease 0s;-moz-transition:transform 0.5s ease 0s;-webkit-transition:transform 0.5s ease 0s;-webkit-transform:translateY(0px);-moz-transform:translateY(0px);-o-transform:translateY(0px);}
#offcanvas.active{left:0;opacity:1;overflow:visible;padding-top:85px;display:block;}
#offcanvas{background:#ffffff;height:100%;}
}
@media (max-width: 1024px){
body #offcanvas{display:block;}
#offcanvas.active{padding-top:50px;}
}

.megamenu-canvas .icon-lists .icon-col a .icon-format {
    font-size: 36px;
    padding-top: 40px;
    padding-bottom: 16px;
}

.megamenu-canvas .icon-lists .icon-col a .title-format {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 15px;
    padding-bottom: 40px;
}
.megamenu-canvas .icon-lists .icon-col a {
    display: block;
    padding: 0;
}


@media (max-width: 676px) {
.megamenu-canvas .icon-lists .icon-col {
    width: 50%;
    border-left: 1px solid #eeeeee !important;
}

}

.megamenu-canvas .icon-lists .icon-col {
    width: 50%;
    float: left;
    border-left: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
}


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

div#shopify-section-header #off-canvas-button {
    left: 32px;
    top: 5px;
}

/* section canvas end */
/* mobile start */


@media (max-width: 792px){
  
  .pop-art li {
    display: block;
    max-width: 100%;
    padding-right: 0;
        margin-bottom: 40px;
}
  div#shopify-section-header {
}
  section.section.knowledge-base > h2 {
    margin-bottom: 50px;
}

.hero-inner {
    padding: 10px 1px;
}

section.section.hero {
    height: 360px;
}
  
 
  li.big-cat.blocks-item {
          margin: 0;

 }
  
  li.big-cat.blocks-item {
      margin: 0;
 }
    

  
  
  .blocks-item {
    flex: 1 0 140px;
  }
  
  
 article.article {
    margin-bottom: 100px;
}
  
  
  .pop-art p {
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
  
  
  
  
  
  
}
.article-footer {
    display: none;
}

/* cnt-pg */
.cnt-pg img {
  border: 0;
}

.cnt-pg *, .cnt-pg :after, .cnt-pg :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.cnt-pg img {
  vertical-align: middle;
}
.cnt-pg h3 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}
.cnt-pg p {
  margin: 0 0 10px;
}
.cnt-pg .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cnt-pg .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .cnt-pg .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .cnt-pg .container {
    width: 1170px;
  }
}
.cnt-pg .row {
  margin-right: -15px;
  margin-left: -15px;
}
.cnt-pg .col-lg-3, .cnt-pg .col-lg-6, .cnt-pg .col-md-3, .cnt-pg .col-md-6, .cnt-pg .col-sm-6, .cnt-pg .col-xs-12, .cnt-pg .col-xs-8 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.cnt-pg .col-xs-12, .cnt-pg .col-xs-8 {
  float: left;
}
.cnt-pg .col-xs-12 {
  width: 100%;
}
.cnt-pg .col-xs-8 {
  width: 66.66666667%;
}
@media (min-width: 768px) {
  .cnt-pg .col-sm-6 {
    float: left;
    width: 50%;
  }
  .cnt-pg .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
}
@media (min-width: 992px) {
  .cnt-pg .col-md-3 {
    float: left;
  }
  .cnt-pg .col-md-6 {
    float: left;
    width: 50%;
  }
  .cnt-pg .col-md-3 {
    width: 25%;
  }
  .cnt-pg .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
}
@media (min-width: 1200px) {
  .cnt-pg .col-lg-3 {
    float: left;
  }
  .cnt-pg .col-lg-6 {
    float: left;
    width: 50%;
  }
  .cnt-pg .col-lg-3 {
    width: 25%;
  }
  .cnt-pg .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
}
.cnt-pg .container:after, .cnt-pg .container:before {
  display: table;
  content: " ";
}
.cnt-pg .row:after, .cnt-pg .row:before {
  display: table;
  content: " ";
}
.cnt-pg .container:after, .cnt-pg .row:after {
  clear: both;
}

.cnt-pg img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  transition: all 400ms ease-in-out 0s;
}
.cnt-pg h3 {
  font-weight: 400;
  line-height: 1.25em;
  margin: 0;
  padding: 0;
  font-size: 20px;
  margin-bottom: 1.25em;
}
.cnt-pg p:last-child {
  margin-bottom: 0;
}
.cnt-pg .contactus-page {
  margin-bottom: 200px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .cnt-pg .container {
    width: 1170px;
  }
}
@media (min-width: 1360px) and (max-width: 1399px) {
  .cnt-pg .container {
    width: 1170px;
  }
}
@media (min-width: 1200px) and (max-width: 1359px) {
  .cnt-pg .container {
    width: 1170px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cnt-pg .container {
    width: 970px;
  }
}
.cnt-pg .contactus-barner {
  width: 100%;
  height: 447px;
  background: #e5e5e5;
}
.cnt-pg .contactus-barner .container {
  height: 100%;
  background-image: url(https://cdn.shopify.com/s/files/1/1520/4366/t/18/assets/contact_us_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cnt-pg .contactus-barner .container .row {
  margin-top: 170px;
}
.cnt-pg .contactus-barner h3 {
  font-size: 34px;
  color: #4d4d4d;
  letter-spacing: 3px;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.cnt-pg .contactus-barner p {
  font-size: 12px;
  color: #666666;
  letter-spacing: 2px;
  line-height: 24px;
}
.cnt-pg .contact-info {
  background: #f4f4f4;
  padding: 48px 0;
}
.cnt-pg .contact-info .info-col {
  height: 150px;
  text-align: center;
}
.cnt-pg .contact-info .info-col > div {
  height: 60px;
}
.cnt-pg .contact-info .info-col p {
  font-size: 12px;
  color: #666666;
  line-height: 1;
}
.cnt-pg .contact-info h3 {
  font-size: 20px;
  color: #44444A;
  letter-spacing: 0;
  line-height: 36px;
  margin-bottom: 60px;
  text-transform: uppercase;
  text-align: center;
}
.cnt-pg .contactus-page {
  font-size: 15px;
  color: #454545;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cnt-pg .contactus-barner .container {
    background-position: 64% center;
  }
}
@media (max-width: 545px) {
  .cnt-pg .contactus-barner {
    height: 410px;
  }
  .cnt-pg .contactus-barner .container .row {
    margin-top: 140px;
  }
  .cnt-pg .contactus-barner h3 {
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 32px;
  }
  .cnt-pg .contactus-barner p {
    letter-spacing: 0px;
    line-height: 18px;
  }
  .cnt-pg .contactus-barner .container {
    background-image: url(https://cdn.shopify.com/s/files/1/1520/4366/t/18/assets/contact_us_bg_mobile.jpg);
    background-position: right center;
  }
}

.container.gg-contact {
    padding: 100px 0;
}


/* ent-pg end */

footer input[type="submit"] {
    margin: 0;
}

form#new_request
 footer {
    text-align: center;
}
.container.gg-contact > p {
    font-size: 12px;
    color: #666666;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
    max-width: 750px;
}

.container.gg-contact h1 {
    text-align: center;
}

.container.gg-contact form {
    text-align: left;
}

.form {
    margin: 0 auto;
}


.upload-dropzone {
    border: 0px solid #ddd;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  mmcolor: #666;
  mmfont-weight: 400; letter-spacing: 0.04px;
}
 ::-moz-placeholder { /* Firefox 19+ */
  mmcolor: #666;
   mmfont-weight: 400; letter-spacing: 0.04px;
}
 :-ms-input-placeholder { /* IE 10+ */
  mmcolor: #666;
   mmletter-spacing: 0.04px;
}
 :-moz-placeholder { /* Firefox 18- */
  mmcolor: #666;
   mmfont-weight: 400; 
   mmletter-spacing: 0.04px;
  
}


form#new_request ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #666;
}
form#new_request ::-moz-placeholder { /* Firefox 19+ */
  color: #666;
}
form#new_request :-ms-input-placeholder { /* IE 10+ */
  color: #666;
}
form#new_request :-moz-placeholder { /* Firefox 18- */
  color: #666;
  
}

.form-field {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px !important;
}

.suggestion-list {
    display: none;
}

textarea#request_description + p {
    display: none;
}

.nesty-input:after {
    color: #666;
    content: "\25BE";
    line-height: 1em;
    position: absolute;
    right: 10px;
    top: 25%;
    font-size: 18px;
}


@media (max-width: 1024px) {
  .form-field.string.required.request_anonymous_requester_email, .form-field.string.required.request_custom_fields_114099677051, .form-field.string.optional.request_custom_fields_114099615592, .form-field.string.optional.request_custom_fields_114099677071, .form-field.string.optional.request_custom_fields_114099679331, .form-field.string.optional.request_custom_fields_114099620732 {
      width: 100%;
    display: block;
    margin-left: 0;
  }
  
  .container.gg-contact {
    padding: 40px 15px;
}
  
}
  

.container.gg-contact * {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.container.gg-contact h1 {
    text-align: center;
    font-size: 20px;
    color: #44444A;
    letter-spacing: 0;
    line-height: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.pop-art li {
    vertical-align: top;
}
div#article-comments {
    margin-bottom: 100px;
}

li.cat-rest.blocks-item.idcat-115000310291 {
    display: none;
}

.main-header > div:not(.logo-container) {
    display: none !important;
}

.hero-inner > p {
    margin: 0;
    color: #b3b3b3;
    font-size: 16px;
    font-weight: 400;
    margin-top: -5px;
    margin-bottom: 30px;
}
form.search.search-full {
    max-width: 681px;
    position: relative;
      margin: 0 auto;
}

.search::after {
    content: "\1F50D";
    position: absolute !important;
    left: 24px;
    display: inline-block;
    width: 20px;
    content: "\1F50D" !important;
    font-family: "copenhagen-icons";
    font-style: normal;
    font-weight: normal;
    speak: none;
    line-height: 1em;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    color: #000;
    font-size: 19px;
    top: 50%;
    transform: translateY(-50%);
}

li.big-cat.blocks-item {
    max-width: 225px;
}

li.big-cat.blocks-item.id-115000310291 {
    display: none;
}
.still, .pop-art {
    display: none;
}

.whole-cat > section {
    display: inline-block;
    width: 33%;
    vertical-align: top;
    padding-left: 80px;
    margin-bottom: 100px;
}

.whole-cat h3 a {
    color: #898884;
    font-size: 17px;
    font-weight: 400;
    line-height: 28.12px; /* Text style for "Shipping a" */
    color: #f55a18;
    font-size: 19px;
}

.whole-cat h3 {
    margin-bottom: 30px;
}

.whole-cat li a {
    color: #898884;
    font-size: 17px;
    font-weight: 400;
}

.whole-cat li {
    padding: 3px 0;
}

.whole-cat {
    border-top: 1px solid #e6e6e6;
    padding-top: 60px;
    margin-top: 50px;
}

li.big-cat.blocks-item {
    border-color: #e6e6e6;
}

section.section.knowledge-base {
    padding-top: 40px;
}

a.blocks-item-link:focus h2 {
    color: #f55a19;
}

 
/* mobile start */

@media (max-width: 1024px){
  
  .whole-cat > section {
    width: 32%;
    vertical-align: top;
    padding-right: 10px;
    padding-left: 0px;
    margin-bottom: 50px;
}

}
@media (max-width: 792px){
  
  .whole-cat > section {
    display: block;
    width: 100%;
    vertical-align: top;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 50px;
}

ul.blocks-list li {
    flex: 1 0 110%;
}
  .blocks-list {
   
    justify-content: center;
}
  
.whole-cat h3 {
    margin-bottom: 10px;
}
 
  li.big-cat.blocks-item {
     max-width: 45%;
    margin-right: 0;
    margin-bottom: 0;
    max-height: none;
    padding-top: 5%;
    min-height: auto;
    padding-bottom: 5%;
}
 a.blocks-item-link img {
    width: 60px;
}
  a.blocks-item-link > div {
    padding-bottom: 3vw;
}
  
  li.big-cat.blocks-item h2 {
    font-size: 13px;
}
  
  li.big-cat.blocks-item.id-115000199672 img {
    max-height: 35px;
}
  section.section.hero {
    padding-bottom: 230px;
    padding-top: 50px;
    height: auto;
}
  
  .hero-inner {
    position: static;
    top: 0 !important;
    transform: unset;
    text-align: center;
}
  form.search.search-full {
    max-width: 100%;
    position: relative;
}
  
  section.section.knowledge-base {
    padding-top: 0;
}
  .whole-cat {
     margin-left: 5%;
    margin-right: 5%;
}
  
  

}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "satechi-complete" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-icon-usbc:before {
    content: "\65";
}
.icon-icon-bluetooth:before {
  content: "\61";
}
.icon-icon-wifi:before {
  content: "\62";
}
.icon-icon-hdmi:before {
  content: "\63";
}
.icon-icon-hdmi4k:before {
  content: "\64";
}
.icon-icon-usbc:before {
  content: "\65";
}
.icon-icon-microsd:before {
  content: "\66";
}
.icon-icon-mobile:before {
  content: "\67";
}
.icon-icon-software:before {
  content: "\68";
}
.icon-icon-stands:before {
  content: "\69";
}
.icon-icon-directions:before {
  content: "\6a";
}
.icon-icon-remote:before {
  content: "\6b";
}
.icon-icon-mount:before {
  content: "\6c";
}
.icon-icon-headphones:before {
  content: "\6d";
}
.icon-icon-windows:before {
  content: "\6e";
}
.icon-icon-apple:before {
  content: "\6f";
}
.icon-icon-watch:before {
  content: "\70";
}
.icon-icon-laptop:before {
  content: "\71";
}
.icon-icon-led:before {
  content: "\72";
}
.icon-icon-automotive:before {
  content: "\73";
}
.icon-icon-creativity:before {
  content: "\74";
}
.icon-icon-accessability:before {
  content: "\75";
}
.icon-icon-cases:before {
  content: "\76";
}
.icon-icon-ch:before {
  content: "\77";
}
.icon-icon-eu:before {
  content: "\78";
}
.icon-icon-rechargeable:before {
  content: "\79";
}
.icon-icon-aluminum:before {
  content: "\7a";
}
.icon-icon-us:before {
  content: "\41";
}
.icon-icon-passthroughcharging:before {
  content: "\42";
}
.icon-icon-cables:before {
  content: "\43";
}
.icon-icon-mouse:before {
  content: "\44";
}
.icon-icon-desktop:before {
  content: "\45";
}
.icon-icon-tablet:before {
  content: "\46";
}
.icon-icon-wirelesscharging:before {
  content: "\47";
}
.icon-icon-externalcharging:before {
  content: "\48";
}
.icon-icon-charging:before {
  content: "\49";
}
.icon-icon-usb3:before {
  content: "\4a";
}
.icon-icon-ethernet:before {
  content: "\4c";
}
.icon-icon-magnet:before {
  content: "\4d";
}
.icon-icon-presentation:before {
  content: "\4e";
}
.icon-icon-sd:before {
  content: "\4f";
}
.icon-icon-keyboads:before {
  content: "\50";
}
.icon-icon-hubs-and-docks:before {
  content: "\51";
}
.icon-icon-hours:before {
  content: "\52";
}
.icon-icon-email:before {
  content: "\53";
}
.icon-icon-manual:before {
  content: "\54";
}
.icon-icon-motive:before {
  content: "\55";
}
.icon-icon-point-of-sale:before {
  content: "\56";
}
.icon-icon-phone:before {
  content: "\57";
}
.icon-icon-photography:before {
  content: "\58";
}
.icon-icon-quickguide:before {
  content: "\59";
}
.icon-icon-printers:before {
  content: "\5a";
}
.icon-icon-travel:before {
  content: "\30";
}
.icon-icon-storage:before {
  content: "\31";
}
.icon-icon-usb:before {
  content: "\4b";
}
.icon-icon-wiremanagement:before {
  content: "\32";
}
.icon-icon-adjustablestand:before {
  content: "\33";
}
.icon-icon-authenticity:before {
  content: "\34";
}
.icon-icon-customerservice2-1:before {
  content: "\35";
}
.icon-icon-warranty2:before {
  content: "\36";
}
.icon-icon-warranty:before {
  content: "\37";
}
.icon-icon-customerservice2:before {
  content: "\38";
}
.icon-icon-authenticity2:before {
  content: "\39";
}

.icon-format:before {
    font-size: 36px;
}

.icon-format {
    padding-bottom: 10px;
}

@media (max-width: 792px){

.icon-format:before {
    font-size: 36px;
}
  
.icon-format.icon-icon-automotive:before, .icon-format.icon-icon-presentation:before {
}
  
}

.sub-nav input[type="submit"] {
    display: none;
}

li.big-cat.blocks-item.id-115000319791 {
    display: none;
}

section > h3.section-tree-title a {
    color: #f25824;
}


a.contact-us {
    display: block;
    background: #f55a19;
    margin: 0 auto;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    width: 220px;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.72px;
    margin-bottom: 100px;
}
a.contact-us:hover {
background: #d63c20;
}

@media (max-width: 792px) {

.whole-cat {
    text-align: center;
}
sssinput#query {
    text-align: center;
    padding-left: 20px;
}
  .whole-cat li a {
      line-height: 1;
  }
}

.icon-vlad.icon-icon-eu:before {
    content: "\54";
}

li.big-cat.blocks-item.id-360000031812 {
    display: none;
}

.category-container p.page-header-description {
    border-bottom: 1px solid #f25824;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.section-tree a.article-list-link {
    font-size: 15px;
}

.section-tree section.section {
    margin-bottom: 20px;
    height: 100%;
}

.rec-act {
    margin-top: 210px;
    background: gray;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    padding: 25px 20px;
    margin-left: 45px;
    /* width: 270px; */
    /* min-width: 270px; */
    flex: 0 0 25%;
}

section > h3.section-tree-title a {
    font-size: 13px;
    text-transform: uppercase;
}

section > h3.section-tree-title a {
    font-size: 20px;
    text-transform: uppercase;
  letter-spacing: -0.2px;
}

.section-tree a.article-list-link {
		font-size: 15px;
    margin-bottom: 0px;
    display: inline-block;
    font-weight: 400;
    width: 90%;
}
.section-tree a.article-list-link:hover,
.section-tree a.article-list-link:focus,
.section-tree a.article-list-link:active{
  text-decoration: underline;  
}
.arrow-right{  
    font-weight: 700;
    font-size: 18px;
    position: relative;
    color: #f25824;
    margin-top: 26px;
    top: 0px;
}
@media screen and(-webkit-min-device-pixel-ratio:0) {
  .arrow-right{  
    font-weight: 700;
    font-size: 18px;
    position: relative;
    color: #f25824;
    margin-top: 26px;
    top: 2px;
 }
}
section > h3.section-tree-title {
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}

ul.article-list {
    list-style: disc;
    width: 70%;
    margin: 0 auto;
}

ul.article-list li {
    margin-bottom: 17px;
    list-style: none;
} 	
.section-tree a.article-list-link {
    vertical-align: text-top;
}

a.cat-5552.blocks-item-link img {
      max-height: 30px;
    display: inline-block !important;
    margin: 8px 0px;
}


a.cat-5552.blocks-item-link img.hoverimg {
    display: none !important;
}

a.cat-5552.blocks-item-link:hover img {
    display: none !important;
}

a.cat-5552.blocks-item-link:hover img.hoverimg {
    display: inline-block !important;
}

li.big-cat.blocks-item a {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

li.big-cat.blocks-item.id-115000199692 {
    order: 9;
}

a.cat-360001628872.blocks-item-link img {
    max-width: 36px;
  max-width: 36px;
    max-height: 33px;
    margin: 13px 0px;
}

.harman_btn4, .harman_btn4:hover {
    background: #f55a19!important;
    border-color: #e94e1b!important;
    color: #fff!important;
}

.link_no_text_span {
}
 
/*
section.section > a>[class*="dev"] {
  background-position: center;
  background-size: 100% 100%;
  max-height: 210px;
  padding: 0 20px;
  text-align: center;
  margin: 0 auto;
}


section.section > a>.dev-360004558571{
  background-image: url("/hc/theming_assets/01KMPCHZ6QR1YBRJSYCEQ0KF1T");
  height: 210px;
  width: 125px;
}
section.section > a>.dev-360003976092{
  background-image: url("/hc/theming_assets/01KMPCHYG1QGYHBTQM5JYCVM43");
  height: 210px;
  width: 230px;
}
section.section > a>.dev-360003975411{
  background-image: url("/hc/theming_assets/01KMPCHYF12D8Y6HZFEEKA9X60");
  height: 210px;
  width: 160px;
}
section.section > a>.dev-360003617532{
  background-image: url("/hc/theming_assets/01KMPCHYECZ39EG4KWETBSBPCP");
  height: 210px;
  width: 165px;
}
*/
@media (max-width: 768px) {
  ul.article-list{
    width: 90%;    
  }
}
.sub-page{
  float:left;
  margin-left:15%;
}
.sub-page .page-header-description{
  margin-bottom:0px;
  text-align: left;
}
.sub-page h1{
  text-align: left;
}
.sub-page-section .article-list.section-tree{
  float:left;
  margin-left: 15%;
}
.sub-page-section .page-header h1{
  color: #f25824
}
.category-container .article-list li:nth-child(n+5) {
	display: none;
}
.page-header-description img{
}

/*
#page-360004558571{
  background-image: url("/hc/theming_assets/01KMPCHZ6QR1YBRJSYCEQ0KF1T");
  background-position: center;
  background-size: 200px 100%;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
}
#page-360003976092{
  background-image: url("/hc/theming_assets/01KMPCHYG1QGYHBTQM5JYCVM43");
  background-size: 300px 100%;
  height: 300px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  margin-left: 5%;
}
#page-360003975411{
  background-image: url("/hc/theming_assets/01KMPCHYF12D8Y6HZFEEKA9X60");
  background-size: 240px 100%;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  margin-left: 10%;
}
#page-360003617532{
  background-image: url("/hc/theming_assets/01KMPCHYECZ39EG4KWETBSBPCP");
  background-size: 200px 100%;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  background-repeat: no-repeat;
  margin-left: 10%;
}
*/
@media(max-width:414px){
  .sub-page{
    margin-left:0px;
    float: none;
  }
  #page-360003976092,
  #page-360003975411,
  #page-360003617532{
    background-position: center;
    margin-left: 0px;
  }
  .sub-page-section .page-header h1{
    font-size: 27px;
  }
  .sub-page-section .article-list.section-tree{
    width: 100%;
    margin-left: 0px;
  }
}


.secimg-wrap {
    display: flex;
    justify-content: center;
    align-items: center
}

.secimg-wrap * {
    max-height: 100%;
}

section > h3.section-tree-title {
    margin-top: 20px;
}

.visible-ok {
          height: 200px;
}



@media all {
  .my-s-h *, .my-s-h :after, .my-s-h :before {
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  .my-s-h :after, .my-s-h :before {
    text-decoration: inherit;
    vertical-align: inherit;
  }
  .my-s-h ::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
  }
  .my-s-h ::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  .my-s-h .background-default {
    background-color: var(--color-default);
  }
  .my-s-h .text-white {
    color: #fff;
  }
  .my-s-h .flex {
    display: flex;
  }
  .my-s-h .items-center {
    align-items: center;
  }
  .my-s-h .justify-center {
    justify-content: center;
  }
  .my-s-h .container {
    margin-right: auto;
    margin-left: auto;
  }
  .my-s-h .relative {
    position: relative;
  }
  .my-s-h .z-index-9 {
    z-index: 9;
  }
  .my-s-h .container {
    width: 100%;
  }
  .my-s-h .padding-vertical-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .my-s-h .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (min-width: 30em) {
  .my-s-h .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 60em) {
  .my-s-h .large--padding-vertical-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media all {
  .my-s-h .font-family-heading {
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-s-h .font-size-1 {
    font-size: 0.75rem;
  }
}
@media all {
  .my-s-h .font-weight-1 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-s-h .font-family-heading.font-weight-1 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-s-h .letter-spacing-1 {
    letter-spacing: 0.0375em;
  }
}
@media all {
  .my-s-h .text-center {
    text-align: center;
  }
}
@media all {
  .my-s-h .container {
    max-width: 73rem;
  }
}




:root {
    --color-primary: #ff4708;
    --color-primary-background: #db3901;
    --color-secondary: #d3d3d2;
    --color-accent: #000000;
    --color-default: #222021;
    --color-grey: #4c4c4c;
    --color-medium-grey: #707070;
    --color-light-grey: #f0f0f0;
    --color-off-white: #f7f7f8;
    --logo-width-desktop: 136px;
    --logo-width-mobile: 118px;
}





@charset "UTF-8";
@media all {
  .my-hdr *, .my-hdr :after, .my-hdr :before {
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  .my-hdr :after, .my-hdr :before {
    text-decoration: inherit;
    vertical-align: inherit;
  }
  .my-hdr h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  .my-hdr nav ul {
    list-style: none;
  }
  .my-hdr a {
    background-color: initial;
  }
  .my-hdr ::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
  }
  .my-hdr img {
    vertical-align: middle;
    border-style: none;
  }
  .my-hdr button, .my-hdr input {
    margin: 0;
  }
  .my-hdr button, .my-hdr input {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  .my-hdr button {
    overflow: visible;
    text-transform: none;
  }
  .my-hdr [type=button], .my-hdr button {
    -webkit-appearance: button;
  }
  .my-hdr [type=button]:-moz-focusring, .my-hdr button:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  .my-hdr ::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  .my-hdr input {
    overflow: visible;
  }
  .my-hdr [tabindex], .my-hdr a, .my-hdr button, .my-hdr input {
    touch-action: manipulation;
  }
  .my-hdr .fab, .my-hdr .far {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  /*
  .my-hdr .fa-facebook-f:before {
    content: "";
  }
  .my-hdr .fa-instagram:before {
    content: "";
  }
  .my-hdr .fa-pinterest-p:before {
    content: "";
  }
  .my-hdr .fa-search:before {
    content: "";
  }
  .my-hdr .fa-shopping-bag:before {
    content: "";
  }
  .my-hdr .fa-twitter:before {
    content: "";
  }
  .my-hdr .fa-user:before {
    content: "";
  } */
  .xxmy-hdr .far {
    font-family: Font Awesome\ 5 Pro;
    font-weight: 400;
  }
  .my-hdr .fab {
    font-family: Font Awesome\ 5 Brands;
  }
  
  .far {
    font-family: Font Awesome\ 5 Pro;
    font-weight: 400;
        font: normal normal normal 14px/1 FontAwesome;
}
  
  .my-hdr .js-mobile-menu, .my-hdr .transition-all {
    transition: all 0.35s ease;
  }
  .my-hdr .aspect-ratio-3x2 {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 66.66667%;
  }
  .my-hdr .border {
    border-style: solid;
    border-width: 1px;
  }
  .my-hdr .border-none {
    border: 0;
  }
  .my-hdr .border-transparent {
    border-color: transparent;
  }
  .my-hdr .border-top, .my-hdr .main-menu-item:hover .main-menu-dropdown {
    border-top-style: solid;
    border-top-width: 1px;
  }
  .my-hdr .custom-icon-plus:after {
    border-right-style: solid;
    border-right-width: 1px;
  }
  .my-hdr .border-bottom, .my-hdr .custom-icon-plus:before, .my-hdr .main-menu-item:hover .main-menu-dropdown {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .my-hdr .border-left {
    border-left-style: solid;
    border-left-width: 1px;
  }
  .my-hdr .border-radius-circle {
    border-radius: 50%;
  }
  .my-hdr .border-radius-pill {
    border-radius: 9999px;
  }
  .my-hdr .border-width-1 {
    border-width: 0.125rem;
  }
  .my-hdr .background-white {
    background-color: #fff;
  }
  .my-hdr .background-primary {
    background-color: var(--color-primary-background);
  }
  .my-hdr .background-default-hover:focus, .my-hdr .background-default-hover:hover {
    background-color: var(--color-default);
  }
  .my-hdr .background-light-grey {
    background-color: var(--color-light-grey);
  }
  .my-hdr .background-off-white {
    background-color: var(--color-off-white);
  }
  .my-hdr .border-primary-hover:focus, .my-hdr .border-primary-hover:hover {
    border-color: var(--color-primary);
  }
  .my-hdr .main-menu-item:hover > a {
    border-color: var(--color-primary);
  }
  .my-hdr .border-primary-dark {
    border-color: var(--color-primary-background);
  }
  .my-hdr .border-secondary {
    border-color: var(--color-secondary);
  }
  .my-hdr .custom-icon-plus:after, .my-hdr .custom-icon-plus:before {
    border-color: var(--color-default);
  }
  .my-hdr .border-light-grey, .my-hdr .main-menu-item:hover .main-menu-dropdown {
    border-color: var(--color-light-grey);
  }
  .my-hdr .border-off-white {
    border-color: var(--color-off-white);
  }
  .my-hdr .text-white-hover:focus, .my-hdr .text-white-hover:hover {
    color: #fff;
  }
  .my-hdr .main-menu-item:hover > a {
    color: var(--color-primary);
  }
  .my-hdr .text-primary-hover:focus, .my-hdr .text-primary-hover:hover {
    color: var(--color-primary);
  }
  .my-hdr .text-primary-dark {
    color: var(--color-primary-background);
  }
  .my-hdr .text-default {
    color: var(--color-default);
  }
  .my-hdr .text-medium-grey {
    color: var(--color-medium-grey);
  }
  .my-hdr .hide {
    display: none;
  }
  .my-hdr .block {
    display: block;
  }
  .my-hdr .custom-icon-plus:after, .my-hdr .custom-icon-plus:before {
    display: block;
  }
  .my-hdr .list-reset li:before {
    display: block;
  }
  .my-hdr .flex {
    display: flex;
  }
  .my-hdr .custom-icon-plus, .my-hdr .inline-block {
    display: inline-block;
  }
  .my-hdr .inline-flex {
    display: inline-flex;
  }
  .my-hdr .grid {
    display: grid;
  }
}
@media only screen and (min-width: 60em) {
  .my-hdr .large--hide {
    display: none;
  }
  .my-hdr .large--block {
    display: block;
  }
}
@media all {
  .my-hdr .flex-row {
    flex-direction: row;
  }
}
@media all {
  .my-hdr .flex-column {
    flex-direction: column;
  }
}
@media all {
  .my-hdr .items-center {
    align-items: center;
  }
}
@media all {
  .my-hdr .justify-center {
    justify-content: center;
  }
}
@media all {
  .my-hdr .justify-end {
    justify-content: flex-end;
  }
}
@media all {
  .my-hdr .justify-between {
    justify-content: space-between;
  }
}
@media all {
  .my-hdr .flex-item-1 {
    flex: 1;
  }
}
@media only screen and (min-width: 60em) {
  .my-hdr .large--flex-item-1 {
    flex: 1;
  }
  .my-hdr .large--flex-item-2 {
    flex: 2;
  }
  .my-hdr .large--self-stretch {
    align-self: stretch;
  }
}
@media all {
  .my-hdr .grid-gap-4 {
    grid-gap: 1rem;
  }
}
@media all {
  .my-hdr .columns-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .columns-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .columns-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .columns-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .columns-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media all {
  .my-hdr .column-span-2 {
    grid-column: span 2;
  }
}
@media all {
  .my-hdr .column-span-3 {
    grid-column: span 3;
  }
}
@media all {
  .my-hdr .column-span-5 {
    grid-column: span 5;
  }
}
@media all {
  .my-hdr .column-span-6 {
    grid-column: span 6;
  }
}
@media all {
  .my-hdr .column-span-7 {
    grid-column: span 7;
  }
}
@media all {
  .my-hdr .column-span-9 {
    grid-column: span 9;
  }
}
@media all {
  .my-hdr .object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media all {
  .my-hdr .object-position-center {
    object-position: center;
  }
}
@media all {
  .my-hdr [data-src][src]:not(iframe).loaded {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  .my-hdr [data-src]:not(iframe):not([style*=background]) {
    opacity: 0;
    transition: opacity 0.5s ease-in;
  }
  .my-hdr [data-src]:not(iframe):not([style*=background]).loaded {
    opacity: 1;
  }
}
@media all {
  .my-hdr .center, .my-hdr .container {
    margin-right: auto;
    margin-left: auto;
  }
}
@media all {
  .my-hdr .main-menu-dropdown, .my-hdr .overflow-hidden {
    overflow: hidden;
  }
}
@media all {
  .my-hdr .overflow-auto {
    overflow: auto;
  }
}
@media all {
  .my-hdr .overflow-visible {
    overflow: visible;
  }
}
@media all {
  .my-hdr .list-reset {
    list-style-type: none;
  }
  .my-hdr .list-reset li:before {
    content: "​";
    font-size: 0;
    width: 0;
    height: 0;
  }
}
@media all {
  .my-hdr .absolute-fill {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
@media all {
  .my-hdr .custom-icon-plus:after, .my-hdr .top-0 {
    top: 0;
  }
}
@media all {
  .my-hdr .top-100 {
    top: 100%;
  }
}
@media all {
  .my-hdr .custom-icon-plus:before {
    top: 0.25rem;
  }
}
@media all {
  .my-hdr .right-0 {
    right: 0;
  }
}
@media all {
  .my-hdr .right--1 {
    right: -0.25rem;
  }
}
@media all {
  .my-hdr .right-5 {
    right: 1.25rem;
  }
}
@media all {
  .my-hdr .custom-icon-plus:before, .my-hdr .left-0 {
    left: 0;
  }
}
@media all {
  .my-hdr .custom-icon-plus:after {
    left: 0.25rem;
  }
}
@media all {
  .my-hdr .left-3 {
    left: 0.75rem;
  }
}
@media all {
  .my-hdr .custom-icon-plus, .my-hdr .relative {
    position: relative;
  }
}
@media all {
  .my-hdr .absolute {
    position: absolute;
  }
}
@media all {
  .my-hdr .custom-icon-plus:after, .my-hdr .custom-icon-plus:before {
    position: absolute;
  }
}
@media all {
  .my-hdr .list-reset li:before {
    position: absolute;
  }
}
@media all {
  .my-hdr .fixed {
    position: fixed;
  }
}
@media all {
  .my-hdr .z-index-2 {
    z-index: 2;
  }
}
@media all {
  .my-hdr .z-index-8 {
    z-index: 8;
  }
}
@media all {
  .my-hdr .z-index-9 {
    z-index: 9;
  }
}
@media all {
  .my-hdr .position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media all {
  .my-hdr .position-center-vertical {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media all {
  .my-hdr .custom-icon-plus:after, .my-hdr .height-100 {
    height: 100%;
  }
}
@media all {
  .my-hdr .height-2 {
    height: 2rem;
  }
}
@media all {
  .my-hdr .js-mobile-menu {
    max-width: 100%;
  }
}
@media all {
  .my-hdr .max-width-9 {
    max-width: 90rem;
  }
}
@media all {
  .my-hdr .container, .my-hdr .custom-icon-plus:before, .my-hdr .width-100 {
    width: 100%;
  }
}
@media all {
  .my-hdr .width-2 {
    width: 2rem;
  }
}
@media all {
  .my-hdr .list-reset, .my-hdr .margin-0 {
    margin: 0;
  }
}
@media all {
  .my-hdr .margin-1 {
    margin: 0.25rem;
  }
}
@media all {
  .my-hdr .margin-vertical-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
@media all {
  .my-hdr .margin-horizontal-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}
@media all {
  .my-hdr .margin-horizontal-5 {
    margin-right: 1.25rem;
    margin-left: 1.25rem;
  }
}
@media all {
  .my-hdr h1 {
    margin-top: 0;
  }
}
@media all {
  .my-hdr .margin-bottom-1 {
    margin-bottom: 0.25rem;
  }
}
@media all {
  .my-hdr .margin-bottom-4 {
    margin-bottom: 1rem;
  }
}
@media all {
  .my-hdr .margin-bottom-8 {
    margin-bottom: 2rem;
  }
}
@media all {
  .my-hdr .margin-left-1 {
    margin-left: 0.25rem;
  }
}
@media all {
  .my-hdr .margin-left-2 {
    margin-left: 0.5rem;
  }
}
@media all {
  .my-hdr .margin-left-7 {
    margin-left: 1.75rem;
  }
}
@media all {
  .my-hdr .list-reset, .my-hdr .padding-0 {
    padding: 0;
  }
}
@media all {
  .my-hdr .padding-vertical-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
@media all {
  .my-hdr .padding-vertical-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media all {
  .my-hdr .padding-vertical-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
@media all {
  .my-hdr .padding-horizontal-3 {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media all {
  .my-hdr .padding-vertical-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media all {
  .my-hdr .container, .my-hdr .padding-horizontal-4 {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media all {
  .my-hdr .padding-vertical-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media all {
  .my-hdr .padding-horizontal-7 {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
}
@media all {
  .my-hdr .padding-vertical-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media all {
  .my-hdr .padding-vertical-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media all {
  .my-hdr .padding-vertical-15 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media all {
  .my-hdr .padding-top-1 {
    padding-top: 0.25rem;
  }
}
@media all {
  .my-hdr .padding-top-3 {
    padding-top: 0.75rem;
  }
}
@media all {
  .my-hdr .padding-top-5 {
    padding-top: 1.25rem;
  }
}
@media all {
  .my-hdr .padding-right-3 {
    padding-right: 0.75rem;
  }
}
@media all {
  .my-hdr .padding-bottom-2 {
    padding-bottom: 0.5rem;
  }
}
@media all {
  .my-hdr .padding-bottom-3 {
    padding-bottom: 0.75rem;
  }
}
@media all {
  .my-hdr .padding-bottom-5 {
    padding-bottom: 1.25rem;
  }
}
@media all {
  .my-hdr .padding-bottom-10 {
    padding-bottom: 2.5rem;
  }
}
@media all {
  .my-hdr .padding-bottom-12 {
    padding-bottom: 3rem;
  }
}
@media all {
  .my-hdr .padding-bottom-15 {
    padding-bottom: 3.75rem;
  }
}
@media all {
  .my-hdr .padding-left-1 {
    padding-left: 0.25rem;
  }
}
@media all {
  .my-hdr .padding-left-5 {
    padding-left: 1.25rem;
  }
}
@media all {
  .my-hdr .padding-left-10 {
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 30em) {
  .my-hdr .container, .my-hdr .small--padding-horizontal-6 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 60em) {
  .my-hdr .large--margin-horizontal-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .my-hdr .large--padding-horizontal-10 {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media all {
  .my-hdr .font-size-xs {
    font-size: 0.6875rem;
  }
}
@media all {
  .my-hdr .font-family-heading {
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-hdr .custom-icon-plus, .my-hdr .font-size-0 {
    font-size: 0;
  }
}
@media all {
  .my-hdr .font-size-1 {
    font-size: 0.75rem;
  }
}
@media all {
  .my-hdr .font-size-2 {
    font-size: 0.8125rem;
  }
}
@media all {
  .my-hdr .font-size-3 {
    font-size: 0.875rem;
  }
}
@media all {
  .my-hdr .font-size-4 {
    font-size: 0.9375rem;
  }
}
@media all {
  .my-hdr .font-weight-1 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-hdr .font-weight-6 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-hdr .font-family-heading.font-weight-6 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-hdr .letter-spacing-1 {
    letter-spacing: 0.0375em;
  }
}
@media all {
  .my-hdr .letter-spacing-2 {
    letter-spacing: 0.075em;
  }
}
@media all {
  .my-hdr .line-height-0 {
    line-height: 0;
  }
}
@media all {
  .my-hdr .line-height-solid {
    line-height: 1;
  }
}
@media all {
  .my-hdr h1 {
    line-height: 1.25;
  }
}
@media all {
  .my-hdr .line-height-double {
    line-height: 1.75;
  }
}
@media all {
  .my-hdr .link {
    color: inherit;
    text-decoration: none;
    transition-duration: 0.3s;
  }
}
@media all {
  .my-hdr .text-left {
    text-align: left;
  }
}
@media all {
  .my-hdr .text-center {
    text-align: center;
  }
}
@media all {
  .my-hdr .text-right {
    text-align: right;
  }
}
@media all {
  .my-hdr .text-uppercase {
    text-transform: uppercase;
  }
}
@media all {
  .my-hdr [data-behavior]:not([data-behavior=ajax-cart-form]) {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}
@media all {
  .my-hdr .container {
    max-width: 73rem;
  }
}
@media all {
  .my-hdr .custom-icon-plus {
    width: 9px;
    height: 9px;
  }
  .my-hdr .custom-icon-plus:after, .my-hdr .custom-icon-plus:before {
    content: "";
  }
}
@media all {
  .my-hdr .hamburger {
    padding: 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: initial;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  .my-hdr .hamburger:hover {
    opacity: 1;
  }
}
@media all {
  .my-hdr .hamburger-box {
    width: 18px;
    height: 10px;
    display: inline-block;
    position: relative;
  }
}
@media all {
  .my-hdr .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
    width: 18px;
    height: 2px;
    background-color: var(--color-default);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  .my-hdr .hamburger-inner:after, .my-hdr .hamburger-inner:before {
    width: 18px;
    height: 2px;
    background-color: var(--color-default);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  .my-hdr .hamburger-inner:after {
    content: "";
    display: block;
  }
  .my-hdr .hamburger-inner:before {
    content: "";
    display: block;
    top: -4px;
  }
  .my-hdr .hamburger-inner:after {
    bottom: -4px;
  }
}
@media all {
  .my-hdr .hamburger--squeeze .hamburger-inner {
    transition-duration: 75ms;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .my-hdr .hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease 0.12s, opacity 75ms ease;
  }
  .my-hdr .hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
}
@media all {
  .my-hdr .hamburger {
    margin-left: -15px;
  }
}
@media all {
  .my-hdr .hamburger-inner {
    background-color: initial !important;
  }
}
@media all {
  .my-hdr .logo {
    width: var(--logo-width-mobile);
  }
}
@media only screen and (min-width: 60em) {
  .my-hdr .logo {
    width: var(--logo-width-desktop);
  }
}
@media all {
  .my-hdr .main-menu-item:hover .main-menu-dropdown {
    opacity: 1;
    max-height: 100vh;
  }
}
@media all {
  .my-hdr .main-menu-dropdown {
    max-height: 0;
    opacity: 0;
    transition: opacity 0.25s ease-in, max-height 0.25s ease-in;
  }
}
@media all {
  .my-hdr .js-mobile-menu {
    will-change: transform;
    transform: translate3d(-100%, 0, 0);
  }
  .my-hdr .js-mobile-menu .custom-icon-plus {
    transition: transform 0.15s ease-in;
  }
}
@media only screen and (min-width: 60em) {
  .my-hdr .js-mobile-menu {
    display: none !important;
  }
}

img.logo.loaded {
    padding-top: 0 !important;
}

img.logo.loaded {
    padding-top: 0 !important;
}

a.js-main-menu-link span {
    color: #000;
}





@charset "UTF-8";
@media all {
  .myfooter *, .myfooter :after, .myfooter :before {
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  .myfooter :after, .myfooter :before {
    text-decoration: inherit;
    vertical-align: inherit;
  }
  .myfooter a {
    background-color: initial;
  }
  .myfooter ::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
  }
  .myfooter img {
    vertical-align: middle;
    border-style: none;
  }
  .myfooter input {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  .myfooter [type=submit] {
    -webkit-appearance: button;
  }
  .myfooter [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  .myfooter ::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  .myfooter input {
    overflow: visible;
  }
  .myfooter a, .myfooter input {
    touch-action: manipulation;
  }
  .myfooter .fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  .myfooter .fa-facebook-f:before {
    content: "";
  }
  .myfooter .fa-instagram:before {
    content: "";
  }
  .myfooter .fa-pinterest-p:before {
    content: "";
  }
  .myfooter .fa-twitter:before {
    content: "";
  }
  .myfooter .fab {
    font-family: Font Awesome\ 5 Brands;
  }
  .myfooter .button, .myfooter .transition-all {
    transition: all 0.35s ease;
  }
  .myfooter .border {
    border-style: solid;
    border-width: 1px;
  }
  .myfooter .button {
    border: 0;
  }
  .myfooter .border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
  .myfooter .border-radius-circle {
    border-radius: 50%;
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .large--border-none {
    border: 0;
  }
}
@media all {
  .myfooter .button {
    background-color: initial;
  }
}
@media all {
  .myfooter .background-white {
    background-color: #fff;
  }
}
@media all {
  .myfooter .background-primary-hover:focus, .myfooter .background-primary-hover:hover {
    background-color: var(--color-primary-background);
  }
}
@media all {
  .myfooter .background-default {
    background-color: var(--color-default);
  }
}
@media all {
  .myfooter .background-default-hover:focus, .myfooter .background-default-hover:hover {
    background-color: var(--color-default);
  }
}
@media all {
  .myfooter .background-off-white {
    background-color: var(--color-off-white);
  }
}
@media all {
  .myfooter .border-secondary {
    border-color: var(--color-secondary);
  }
}
@media all {
  .myfooter .border-light-grey {
    border-color: var(--color-light-grey);
  }
}
@media all {
  .myfooter .button {
    color: #fff;
  }
}
@media all {
  .myfooter .text-white-hover:focus, .myfooter .text-white-hover:hover {
    color: #fff;
  }
}
@media all {
  .myfooter .text-primary-hover:focus, .myfooter .text-primary-hover:hover {
    color: var(--color-primary);
  }
}
@media all {
  .myfooter .text-default {
    color: var(--color-default);
  }
}
@media all {
  .myfooter .text-grey {
    color: var(--color-grey);
  }
}
@media all {
  .myfooter .text-medium-grey {
    color: var(--color-medium-grey);
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .large--background-white {
    background-color: #fff;
  }
}
@media all {
  .myfooter .button {
    cursor: pointer;
  }
  .myfooter .button:disabled {
    pointer-events: none;
  }
}
@media all {
  .myfooter .block, .myfooter .list-reset li:before {
    display: block;
  }
}
@media all {
  .myfooter .flex {
    display: flex;
  }
}
@media all {
  .myfooter .button, .myfooter .inline-block {
    display: inline-block;
  }
}
@media all {
  .myfooter .grid {
    display: grid;
  }
}
@media all {
  .myfooter .flex-row {
    flex-direction: row;
  }
}
@media all {
  .myfooter .flex-wrap {
    flex-wrap: wrap;
  }
}
@media all {
  .myfooter .items-center {
    align-items: center;
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .large--justify-between {
    justify-content: space-between;
  }
  .myfooter .large--order-2 {
    order: 2;
  }
  .myfooter .large--grow-2 {
    flex-grow: 2;
  }
}
@media all {
  .myfooter .grid-gap-4 {
    grid-gap: 1rem;
  }
}
@media all {
  .myfooter .columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all {
  .myfooter [data-src][src]:not(iframe).loaded {
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  .myfooter [data-src]:not(iframe):not([style*=background]) {
    opacity: 0;
    transition: opacity 0.5s ease-in;
  }
  .myfooter [data-src]:not(iframe):not([style*=background]).loaded {
    opacity: 1;
  }
}
@media all {
  .myfooter .center, .myfooter .container {
    margin-right: auto;
    margin-left: auto;
  }
}
@media all {
  .myfooter .overflow-hidden {
    overflow: hidden;
  }
}
@media all {
  .myfooter .list-reset {
    list-style-type: none;
  }
  .myfooter .list-reset li:before {
    content: "​";
    font-size: 0;
    width: 0;
    height: 0;
  }
}
@media all {
  .myfooter .relative {
    position: relative;
  }
}
@media all {
  .myfooter .absolute, .myfooter .list-reset li:before {
    position: absolute;
  }
}
@media all {
  .myfooter .position-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media all {
  .myfooter .container, .myfooter .width-100 {
    width: 100%;
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .large--width-auto {
    width: auto;
  }
  .myfooter .large--width-50 {
    width: 50%;
  }
}
@media all {
  .myfooter .list-reset {
    margin: 0;
  }
}
@media all {
  .myfooter .margin-1 {
    margin: 0.25rem;
  }
}
@media all {
  .myfooter .margin-horizontal-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}
@media all {
  .myfooter .margin-vertical-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
@media all {
  .myfooter .margin-vertical-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media all {
  .myfooter h3 {
    margin-top: 0;
  }
}
@media all {
  .myfooter .margin-bottom-2 {
    margin-bottom: 0.5rem;
  }
}
@media all {
  .myfooter .margin-bottom-5 {
    margin-bottom: 1.25rem;
  }
}
@media all {
  .myfooter .margin-left--1 {
    margin-left: -0.25rem;
  }
}
@media all {
  .myfooter .button, .myfooter .list-reset {
    padding: 0;
  }
}
@media all {
  .myfooter .padding-vertical-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}
@media all {
  .myfooter .padding-horizontal-2 {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
@media all {
  .myfooter .padding-3 {
    padding: 0.75rem;
  }
}
@media all {
  .myfooter .button {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media all {
  .myfooter .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media all {
  .myfooter .button {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media all {
  .myfooter .padding-vertical-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media all {
  .myfooter .padding-vertical-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media all {
  .myfooter .padding-top-12 {
    padding-top: 3rem;
  }
}
@media all {
  .myfooter .padding-bottom-4 {
    padding-bottom: 1rem;
  }
}
@media all {
  .myfooter .padding-bottom-10 {
    padding-bottom: 2.5rem;
  }
}
@media all {
  .myfooter .padding-left-10 {
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 30em) {
  .myfooter .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .large--margin-right-0 {
    margin-right: 0;
  }
  .myfooter .large--margin-bottom-0 {
    margin-bottom: 0;
  }
  .myfooter .large--margin-left-5 {
    margin-left: 1.25rem;
  }
  .myfooter .large--padding-horizontal-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .myfooter .large--padding-vertical-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .myfooter .large--padding-vertical-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .myfooter .large--padding-vertical-15 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .myfooter .large--padding-top-0 {
    padding-top: 0;
  }
}
@media all {
  .myfooter .font-size-xs {
    font-size: 0.6875rem;
  }
}
@media all {
  .myfooter .font-family-heading {
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .font-size-0 {
    font-size: 0;
  }
}
@media all {
  .myfooter .font-size-1 {
    font-size: 0.75rem;
  }
}
@media all {
  .myfooter .font-size-2 {
    font-size: 0.8125rem;
  }
}
@media all {
  .myfooter .font-size-3 {
    font-size: 0.875rem;
  }
}
@media all {
  .myfooter .font-size-4 {
    font-size: 0.9375rem;
  }
}
@media all {
  .myfooter .font-weight-1, .myfooter .font-weight-4 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .font-family-heading.font-weight-4 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .button, .myfooter .font-weight-5 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .font-family-heading.font-weight-5, .myfooter h3:not(.font-family-primary).font-weight-5 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .font-weight-6 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .font-family-heading.font-weight-6 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .myfooter .letter-spacing-1 {
    letter-spacing: 0.0375em;
  }
}
@media all {
  .myfooter .button {
    letter-spacing: 0.075em;
  }
}
@media all {
  .myfooter h3 {
    line-height: 1.25;
  }
}
@media all {
  .myfooter .link {
    color: inherit;
    text-decoration: none;
    transition-duration: 0.3s;
  }
}
@media all {
  .myfooter .button, .myfooter .text-center {
    text-align: center;
  }
}
@media all {
  .myfooter .button, .myfooter .text-uppercase {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .large--text-left {
    text-align: left;
  }
}
@media all {
  .myfooter .button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
  }
  .myfooter .button:disabled {
    opacity: 0.7;
  }
}
@media all {
  .myfooter .container {
    max-width: 73rem;
  }
}
@media all {
  .myfooter .logo {
    width: var(--logo-width-mobile);
  }
}
@media only screen and (min-width: 60em) {
  .myfooter .logo {
    width: var(--logo-width-desktop);
  }
}

.myfooter .button {
    height: unset;
    border-radius: unset;
}

input.button.background-default.background-primary-hover.font-size-1.text-uppercase.width-100.large--width-auto {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

input#query {
    text-align: left;
    padding-left: 50px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.46;
    letter-spacing: 0.81px;
    color: #8c8c8c;
    font-family: inherit;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.request-form label {
    text-align: left;
}

.form-field.required {
    display: block;
}

.form-field.showed {
    display: block;
}
span.attreceipt {
    display: none;
}

.recepreq span.attreceipt {
    display: block;
}


.recepreq  span:not(.attreceipt) {
    display: none;
}

.form-field.string.optional>span {
    display: none;
}

a.nesty-input+span,div#upload-dropzone .rednotif,input +.rednotif,p#request_description_hint + .rednotif{
    display: block !important;
}

div#upload-dropzone>.rednotif+.rednotif,.rednotif {
    display: none !important;
}

span.rednotif+span.rednotif {
    display: none !important;
}
.form-field.text.request_description {
    display: block;
}

p.order-modif+p.order-modif {
    display: none;
}

p.order-modif {
    margin-top: 30px;
    margin-bottom: 10px;
}

.form-field.text.required.request_description>div#request_description_error {
}



.mainbutns {
    display: flex;
    justify-content: center;
    max-width: 940px;
    margin: 0 auto;
    margin-bottom: 130px;
    flex-wrap: wrap;
      width: 100%;
}

.mainbutns a {
    flex: 1 0 25%;
    text-align: center;
    background-color: #f7f7f8;
    margin: 6px;
    padding: 0 15px;
}

.imgwrap {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgwrap img {
    height: 210px;
      mix-blend-mode: multiply;
}

.mainbutns h2 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
}

.mainbutns.api-articles h2 {
   
    font-size: 12px;
 
}

.mainbutns p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.2px;
    text-align: center;
    color: #000000;
    margin-bottom: 35px;
}

section.mainbtn-wrap {
    text-align: center;
    padding-top: 35px;
}

section.mainbtn-wrap h1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 1.88px;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 20px;
}


section.takeactions-wrap {
    height: 608px;
    background-color: #f7f7f8;
    padding: 140px 0;
}

section.takeactions-wrap >DIV {
    MAX-WIDTH: 930px;
    margin: 0 auto;
    display: flex;
}

.wrapper>div {
    flex: 1;
}

.left-actions h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.67;
    letter-spacing: 1.6px;
    color: #000000;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.left-actions h2 {
    font-size: 50px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.12;
    letter-spacing: -0.4px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
}

.left-actions p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.2px;
    color: #000000;
    margin-top: 17px;
    margin-bottom: 25px;
    padding-right: 40px;
}

h4 {}

.left-actions a {
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1.07px;
    color: #f1603b;
    text-transform: uppercase;
}

.right-actions > div {
    width: 249px;
    height: 190px;
    border-radius: 8px;
    border: solid 1.1px #e7e7e8;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icon-circle {
    width: 106px;
    height: 106px;
    background-color: #f7f7f8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle+span {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #444444;
}

.right-actions {
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-left: 100px;
    position: relative;
}

.icon-actions+.icon-actions {
    position: absolute;
    top: 180px;
    left: 164px;
}

section.cantfind {
    min-height: 600px;
    background: url(/hc/theming_assets/01KMPCHZ2VHWFKYKWTWX5RWN41);
}

.wrapcant {}

section.cantfind {background-size: cover;display: flex;align-items: center;justify-content: flex-start;}

.wrapcant {
    height: 100%;
    display: flex;
    justify-content: center;
    max-width: 930px;
    margin: 0 auto;
    width: 100%;
    flex-direction: column;
}

.wrapcant h4 {
    font-size: 50px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.12;
    letter-spacing: -0.4px;
    color: #000000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 480px;
    margin-bottom: 30px;
}

.wrapcant a {
    width: 146px;
    height: 44px;
    background-color: #222021;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.7px;
    text-align: center;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.mainbutns a:Hover {
    box-shadow: 2px 2px 5px 0 rgba(140, 140, 140, 0.5);
    top: -5px;
    text-decoration: none;
}

.mainbutns a {
    transition: all .15s ease-in-out;
    position: relative;
}

html:not(.hp-sub) .hpnav,html:not(.hp-sub) .sub-mainbutns {
  display: none;
}
.hp-sub section.section.hero {
    height: 390px;
}

.hp-sub section.takeactions-wrap {
    display: none;
}

.hp-sub .mainbutns-wrap {
  display: none;
}


.hp-sub .sub-mainbutns {
  display: flex;
}

.sub-mainbutns h2 {
    padding-bottom: 20px;
}

nav.sub-nav.hpnav {
    padding-bottom: 0;
}

ul.meta-group {
    display: none;
}

.search-result-description {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.18px;
    color: #4c4c4c;
    padding: 0 !important;
    margin-top: 0;
}

.search-result-description em {
    font-weight: bold;
    background: none;
    color: inherit;
    font-style: normal;
    padding: 0;
    border-radius: 0;
}

a.search-result-link {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.19;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0;
}

a.search-result-link em {
    color: #ff4708;
}

li.search-result>p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.85;
    letter-spacing: -0.24px;
    color: #8c8c8c;
    margin-bottom: 0;
}

.search-results {
    max-width: 930px;
    margin: 0 auto;
}

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

li.pagination-current {
    background: transparent;
}

.pagination-current span {
    color: #000;
}

nav.pagination li a {
    letter-spacing: -0.24px;
    color: #8c8c8c;
}

nav.pagination {
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 1.88px;
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 5px;
}

p.page-header-description {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.13;
    letter-spacing: normal;
    text-align: center;
    color: #757575;
    margin-top: 0;
    margin-bottom: 70px;
}

section.section-articles.collapsible-sidebar {
    background-color: #f7f7f8;
    min-width: 333px;
    padding: 45px;
    padding-left: 0;
    padding-right: 0;
}

a.sidenav-item {
    padding: 0;
}

article.article {
    flex: unset;
    padding-left: 50px;
    padding-right: 0;
}

h1.article-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 21px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: .8px;
    color: #000000;
}

.article-body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.2px;
    color: #4c4c4c;
}

header.article-header {
    margin-bottom: 0;
}

.article-content {
    margin-top: 10px;
}

h3.collapsible-sidebar-title.sidenav-title {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1.07px;
    color: #222021;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 0 45px;
}

a.sidenav-item {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: -0.18px;
    color: #222021;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.sidenav-item.current-article, .sidenav-item:hover {
    background-color: #ffffff;
    color: #8c8c8c;
  border-right: 4px solid #222021;

  border-radius: 0;
}

section.article-relatives {
    display: none;
}

div#article-comments {
    display: none;
}

.article-more-questions {
    border-top: solid 1px #e7e7e8;
    padding-top: 50px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1.07px;
    color: #222021;
    text-transform: uppercase;
}

.article {
  
    width: 100%;
}

li.search-result {
    position: relative;
    padding-left: 86px;
}

li.search-result:before {content: url(/hc/theming_assets/01KN0JDSEPSPYMBWC2MBCK8NF8);
position: absolute;
    left: 0;
}

.hpnav {
  display: none;
}
.hp-ph .hpnav.nav-ph {
  display: block;
}
.hp-sf .hpnav.nav-sf {
  display: block;
}
.hp-ts .hpnav.nav-ts {
  display: block;
}

.hp-sub .sub-mainbutns {
  display: none;
}
.hp-ph .btns-ph {
  display: block;
}
.hp-sf .btns-sf {
  display: block;
}
.hp-ts .btns-ts {
  display: block;
}

.hp-sub .mainmainbtn {
  display: none;
}

section.btns-ph.sub-mainbutns.mainbtn-wrap img {
    max-height: 210px;
    height: unset;
}














@media all {
  .my-form *, .my-form :after, .my-form :before {
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  .my-form :after, .my-form :before {
    text-decoration: inherit;
    vertical-align: inherit;
  }
  .my-form h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  .my-form a {
    background-color: initial;
  }
  .my-form ::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
  }
  .my-form ::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  .my-form a {
    touch-action: manipulation;
  }
  .my-form .far {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
  }
  
  .my-form .far {
    font-family: Font Awesome\ 5 Pro;
    font-weight: 400;
  }
  .my-form .background-off-white {
    background-color: var(--color-off-white);
  }
  .my-form .text-primary-dark {
    color: var(--color-primary-background);
  }
  .my-form .rte, .my-form .text-grey {
    color: var(--color-grey);
  }
}
@media only screen and (min-width: 60em) {
  .my-form .large--grid {
    display: grid;
  }
}
@media only screen and (min-width: 60em) {
  .my-form .large--grid-gap-4 {
    grid-gap: 1rem;
  }
  .my-form .large--columns-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .my-form .large--column-start-2 {
    grid-column-start: 2;
  }
  .my-form .large--column-end-8 {
    grid-column-end: 8;
  }
  .my-form .large--column-start-9 {
    grid-column-start: 9;
  }
  .my-form .large--column-end--1 {
    grid-column-end: -1;
  }
}
@media all {
  .my-form .container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
@media all {
  .my-form .width-100 {
    width: 100%;
  }
}
@media all {
  .my-form .margin-horizontal--4 {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
@media all {
  .my-form .margin-vertical-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media all {
  .my-form h1, .my-form h2, .my-form h3 {
    margin-top: 0;
  }
}
@media all {
  .my-form .margin-bottom-8 {
    margin-bottom: 2rem;
  }
}
@media all {
  .my-form .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media all {
  .my-form .padding-10 {
    padding: 2.5rem;
  }
}
@media all {
  .my-form .padding-top-3 {
    padding-top: 0.75rem;
  }
}
@media all {
  .my-form .padding-top-4 {
    padding-top: 1rem;
  }
}
@media all {
  .my-form .padding-top-10 {
    padding-top: 2.5rem;
  }
}
@media only screen and (min-width: 30em) {
  .my-form .small--margin-horizontal--6 {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .my-form .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media only screen and (min-width: 60em) {
  .my-form .large--margin-horizontal-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .my-form .large--padding-14 {
    padding: 3.5rem;
  }
  .my-form .large--padding-vertical-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media all {
  .my-form .font-size-rte-title {
    font-size: 1.875rem;
  }
}
@media all {
  .my-form .rte {
    font-size: 0.9375rem;
  }
}
@media all {
  .my-form .font-weight-4 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-form .font-weight-6 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-form h1:not(.font-family-primary).font-weight-6 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-form .font-weight-7 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-form h2:not(.font-family-primary).font-weight-7, .my-form h3:not(.font-family-primary).font-weight-7 {
    font-weight: 400;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
}
@media all {
  .my-form .rte {
    letter-spacing: -0.02em;
  }
}
@media all {
  .my-form .letter-spacing-1 {
    letter-spacing: 0.0375em;
  }
}
@media all {
  .my-form h1, .my-form h2, .my-form h3 {
    line-height: 1.25;
  }
}
@media all {
  .my-form .rte {
    line-height: 1.75;
  }
}
@media all {
  .my-form .text-no-decoration-hover:focus, .my-form .text-no-decoration-hover:hover {
    text-decoration: none;
  }
}
@media all {
  .my-form .text-uppercase {
    text-transform: uppercase;
  }
}
@media all {
  .my-form .container {
    max-width: 73rem;
  }
}





nav.artnav.hpnav.sub-nav {
    display: block;
    margin-top: -15px;
    margin-bottom: 15px;
}

nav.artnav.hpnav.sub-nav li:last-child,nav.artnav.hpnav.sub-nav li:last-child a {
    /* color: #757575 !important; */
    color: #222021;
}

section.section-articles.collapsible-sidebar > a {
    text-transform: uppercase;
    padding-left: 45px;
    margin-top: 10px;
    DISPLAY: BLOCK;
    FONT-WEIGHT: 500;
}

section.article-sidebar {
    margin-bottom: 60px;
}

.article-vote-up::before,.article-vote-down::before {
    display: none;
}

.article-vote::after {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.09;
    letter-spacing: 0.43px;
    text-align: center;
    color: #222021;
}

span.article-votes-question {
    margin-bottom: 20px;
    display: block;
}

span.article-vote-label {
    /* font-family: 'Helvetica Neue', Arial, sans-serif; */
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.85;
    letter-spacing: -0.24px;
    text-align: center;
    color: #8c8c8c;
    margin-top: 10px;
    display: block;
}

.article-more-questions {
    border-top: solid 1px #e7e7e8;
}.article-vote-up::before,.article-vote-down::before {
    display: none;
}

.article-vote::after {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.09;
    letter-spacing: 0.43px;
    text-align: center;
    color: #222021;
    text-transform: uppercase;
}

span.article-votes-question {
    margin-bottom: 20px;
    display: block;
}

span.article-vote-label {
    /* font-family: 'Helvetica Neue', Arial, sans-serif; */
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.85;
    letter-spacing: -0.24px;
    text-align: center;
    color: #8c8c8c;
    margin-top: 10px;
    display: block;
}

.article-more-questions {
    border-top: solid 1px #e7e7e8;
}

.article-votes-controls a {
    width: 153px;
    height: 48px;
    /* padding: 27px 64px 20px 65px; */
    border-radius: 3px;
    border: solid 1px #e7e7e8;
    background-color: #ffffff;
    line-height: 46px;
}

.article-become-adopter {
    text-align: center;
    border-top: solid 1px #e7e7e8;
    /* border-bottom: solid 1px #e7e7e8; */
    padding: 50px 20px;
}

.article-become-adopter h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 21px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: 1.5px;
    text-align: center;
    color: #222021;
}

.article-become-adopter > a {
    width: 131px;
    height: 44px;
    background-color: #222021;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.7px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.article-become-adopter p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 1px;
    text-align: center;
    color: #222021;
}

.article-become-adopter p a {
    color: #f1603b;
    text-decoration: underline;
}

.article-more-questions {
    margin-top: 0;
}
.article-votes {
    margin-bottom: 40px;
}

h3.expander + p {
    display: none;
}

h3.expander {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.57;
    letter-spacing: -0.18px;
    color: #222021;
    border-bottom: solid 1px #e7e7e8;
    min-height: 54px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
    padding-right: 50px;
}

h3.expander:first-of-type {
    border-top: solid 1px #e7e7e8;
}

h3.expander:after {content: '+';position: absolute;right: 20px;}


h3.expander.expanded + p {
    display: block;
    border-bottom: 1px solid rgb(231, 231, 232);
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 15px;
    padding-right: 40px;
}

h3.expander.expanded {
    border-bottom: none;
}

h3.expander.expanded::after {
    content: '-';
}
.article-content {
    margin-bottom: 100px;
}
 

footer input[type="submit"] {border-radius: 0;min-width: unset;width: 100%;height: 46px;font-size: 16px;line-height: 1;font-weight: 500;background-color: #db3901;letter-spacing: .075em;text-transform: uppercase;border-color: #db3901;font-size: 13px;border-radius: 0;margin-bottom: 15px;height: 50px;border: 0;color: #FFF;width: 100%;padding: 0 45px;transition: all .35s ease;}

.nesty-panel li  {
    background: gray;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
      line-height: 24px;
      padding-top: 5px;
      display: flex;
}

.nesty-panel li:hover  {
    background: #549CEC;
}
.request-form label {
    text-transform: uppercase;
}


.mainbutns:not(.api-articles) a.allcats-btns {
    display: none;
}
.mainbutns.api-articles.filter-active a.allcats-btns {
    display: none;
    display: initial;
}

.mainbutns.api-articles.filter-active {
    width: 100%;
}

.mainbutns a.allcats-btns[ajdi="115000310291"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199552"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199612"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199572"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="360005473972"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199672"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199592"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199692"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199871"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199871"] {
    display: block;
}
.mainbutns a.allcats-btns[ajdi="360005948032"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37415491604763"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37415491604763"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37415491604763"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37415491604763"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37415533119003"] {
    display: block;
}


.mainbutns a.allcats-btns[ajdi="38782562379419"] {
    display: block;
}


.mainbutns a.allcats-btns[ajdi="45635819296155"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="38782587862555"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="38782640586395"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="38782640586395"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="38782653341339"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="38782751629979"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464565504795"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="115000199552"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464587157787"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464617540251"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464632487195"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464655381275"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="38782796231451"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464707110171"] {
    display: block;
}

.mainbutns a.allcats-btns[ajdi="37464617540251"] {
    display: block;
}




.sub-mainbutns h2 {
    min-height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}


section.btns-sf.sub-mainbutns.mainbtn-wrap .imgwrap {
    height: 200px;
}

section.btns-sf.sub-mainbutns.mainbtn-wrap h2 {
    padding-bottom: 30px;
}


li[title="Customer Support"]:nth-child(2) {
    display: none;
}
.filters-cont {
     border-bottom:   solid 1px #e7e7e8;  
    max-width: 930px;
    margin: 0 auto;
}
.filters {
    display: flex;
    padding-top: 60px;
    margin: 0 -15px;
  flex-wrap: wrap;
    justify-content: space-between;
}

.filters a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1.07px;
    color: #222021;
    text-transform: uppercase;
    padding-bottom: 11px;
    padding-top: 11px;
      margin: 0 15px;
}
.filters a.active {
    border-bottom: 2px solid #222021;
}

.filters a:hover,.filters a:focus,.filters a:active, {
    text-decoration: none !important;
    /* border-bottom: 2px solid #222021; */
}
.mainbutns.api-articles {
    padding-top: 40px;
}
a.allcats-btns + ul {
    display: none;
}
a.allcats-btns {
    max-width: calc(33.33% - 12px);
}

.mainbutns.api-articles {
    justify-content: flex-start;
}

.hp-buttons a img {
    max-height: 90px;
}
.mainbutns.api-articles h2 {
    margin-bottom: 20px;
}
.nevidljivi {
  opacity: 0;
}

.filters a:focus,.filters a:active, {
    text-decoration: none !important;
}

.filters>a:hover {
    text-decoration: underline !important;
    /* border-bottom: 2px solid #222021; */
}

section.mainmainbtn.mainbtn-wrap.hp-buttons img, .hp-buttons img {
    mix-blend-mode: unset;
}

.hidden {
    display: none !important;
}

nav.header-right.flex.flex-row.items-center.justify-end {
    visibility: hidden;
    opacity: 0;
}
.acsb-widget [role="button"] {
    padding: 0;
}

/* mobile april 21 */
  
  @media (max-width: 798px){
.container {
    padding: 0 20px;
}

.mainbutns a {
    margin-left: 0;
    margin-right: 0;
}
    
section.section.hero {
    height: 400px;
    padding-bottom: 0;
    padding-top: 0;
}


.hero-inner {position: relative;top: 50% !important;transform: translateY(-50%);}

.hero-inner h1 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 7px;
}

.mainbutns {
    flex-direction: column;
}

.imgwrap {
    height: 180px;
}

section.takeactions-wrap > div {
    max-width: 100%;
    flex-direction: column;
}

section.takeactions-wrap {
    height: unset;
    padding: 50px 20px;
    padding-bottom: 200px;
}

.right-actions {
    margin-left: 0;
    margin-top: 70px;
}

.right-actions > div {
    width: 58%;
    height: 50vw;
}

.icon-actions + .icon-actions {
    left: 43%;
    top: 40vw;
}

section.cantfind {
    padding: 50px 20px;
    background-position: center;
    background: url(/hc/theming_assets/01KMPCHYMH81X1RX7TPSKR3VA4);
    align-items: baseline;
    padding-top: 80px;
  BACKGROUND-POSITION: CENTER;
    background-size: cover;
}

.wrapcant h4 {
    text-align: center;
    font-size: 34px;
}

.wrapcant a {
    margin: 0 auto;
}
  

.left-actions h2 {
    font-size: 34px;
}

.left-actions p {
    padding-right: 0;
}

.left-actions a {
    font-size: 12px;
    text-decoration: underline;   
}

nav.sub-nav.hpnav {
    margin-bottom: 0;
    display: none !important;
}

.sub-mainbutns .mainbutns {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -2px;
    margin-right: -2px;
    max-width: unset;
    width: unset;
    justify-content: flex-start;
}

.sub-mainbutns .mainbutns a {
    flex: 1 0 45%;
    max-width: calc(50% - 2px);
    margin: 1px;
}

.sub-mainbutns .mainbutns a img {
    max-width: 100%;
    max-height: 100% !important;
}

.sub-mainbutns .mainbutns a .imgwrap {
    height: 120px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.sub-mainbutns {
    padding-top: 10px !important;
}

.sub-mainbutns .mainbutns a h2 {
    font-size: 13px;
    min-height: 10px;
    padding-bottom: 15px;
}

    .mainbutns.api-articles {
    flex-flow: row wrap;
    margin-left: -2px;
    margin-right: -2px;
    max-width: unset;
    width: unset;
    justify-content: flex-start;
    margin-bottom: 10px;
          min-height: 290px;
}

.mainbutns.api-articles> a {
    flex: 1 0 45%;
    max-width: calc(50% - 2px);
    margin: 1px;
}

.page-header h1 {
    margin-top: 10px;
    margin-bottom: 0;
}

.filters {
    padding-top: 30px;
      flex-direction: column;
      align-items: baseline;
}

.filters a {
    padding-top: 5px;
    padding-bottom: 0px;
}

.mainbutns.api-articles> a .imgwrap img {
    max-width: 100%;
    height: unset;
}

.category-container {
    margin-bottom: 50px;
}
    
  section.section-articles.collapsible-sidebar {
    padding-top: 0;
    padding-bottom: 0;
    min-width: unset;
    height: unset;
    max-height: unset;
}

h3.collapsible-sidebar-title.sidenav-title {
  margin-bottom: 10px;
  padding: 10px 10px;
  margin-bottom: 0;
    padding: 15px 20px;
    }

a.sidenav-item {
    padding: 13px 20px;
}
    section.section-articles.collapsible-sidebar > a {
    padding-left: 20px;
    padding-bottom: 20px;
}

section.section-articles.collapsible-sidebar:not([aria-expanded="true"]) ul,section.section-articles.collapsible-sidebar:not([aria-expanded="true"]) a {
    display: none;
}
    article.article {
    padding-left: 0;
}

section.article-sidebar {
    margin-bottom: 20px;
      position: sticky;
    top: 10px;
    z-index: 9;
    border: 1px solid #ddd;
}
 a.search-result-link {
    line-height: 1.2;
    letter-spacing: .5px;
}

.search-result-description {
    line-height: 1.4;
    margin-top: 10px;
}

.pagination li {
    height: 25px;
    width: 25px;
    margin-left: 3px;
}

nav.pagination li a {
    padding: 0;
}

.pagination-current span {
    padding: 0;
}   
    
  .my-form .padding-10 {
    padding: 20px;
}

form#new_request {
    padding-bottom: 30px;
}
    div#article-container {
    position: relative;
}

main {
    overflow: visible;
}

.myfooter .container {padding-left: 20px;padding-right: 20px;}

h3.collapsible-sidebar-title.sidenav-title {
    font-size: 14px;
    letter-spacing: 0.4px;
    padding-right: 28px;
    line-height: 1.3;
}
    section.btns-sf.sub-mainbutns.mainbtn-wrap.hp-buttons img {
    max-height: 70px !important;
}

section.btns-sf.sub-mainbutns.mainbtn-wrap.hp-buttons .imgwrap {
    height: 100px;
}
    .filters a:hover {
    text-decoration: none !important;
}
    section.btns-sf.sub-mainbutns.mainbtn-wrap.hp-buttons .imgwrap img {
    height: 57px !important;
}
    section.article-sidebar {
    margin-left: -21px;
    margin-right: -21px;
    top: 0;
}
 
body {
    overflow-x: hidden;
}
   .mainbutns {
    margin-bottom: 60px;
}   
}
  .acsb-trigger svg {
    width: 100%;
}
.mainbutns.api-articles.filter-active .loader-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}
.sus {
display: none;
}
.sus li {
    margin-bottom: 30px;
}

.sus li {
    margin-bottom: 30px;
    /* display: flex; */
    flex-direction: column;
    padding: 20px;
    word-wrap: break-word;
}

.sus li:nth-child(even) {
    background: #f1f1f1;
}

.filters-cont {
    display: none;
    visibility: hidden;
}
/* ── Article Accordion Drawers ─────────────────────────── */
.hc-accordion {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  margin-bottom: 4px;
  overflow: hidden;
}
.hc-accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  background: #fafafa;
  user-select: none;
}
.hc-accordion-title::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  color: #999;
  transition: transform 0.2s;
}
.hc-accordion.is-open .hc-accordion-title::after {
  content: '−';
}
.hc-accordion-body {
  display: none;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  border-top: 1px solid #e5e5e5;
}
.hc-accordion.is-open .hc-accordion-body {
  display: block;
}
.hc-accordion-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.hc-accordion-controls button {
  font-size: 13px;
  color: #6c5ce7;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* ============================================================
   CONTACT FORM IMPROVEMENTS — v3.7
   Scoped to form#new_request only — no impact on articles,
   search, or any other Help Center pages.
   ============================================================ */

/* Sentence case labels — removes ALL CAPS */
form#new_request .form-field label {
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0;
  margin-bottom: 6px;
}

/* More breathing room between fields */
form#new_request .form-field ~ .form-field {
  margin-top: 20px;
}

/* Cleaner text inputs */
form#new_request .form-field input[type="text"],
form#new_request .form-field input[type="email"],
form#new_request .form-field input:not([type="checkbox"]):not([type="submit"]) {
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  height: 44px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form#new_request .form-field input[type="text"]:focus,
form#new_request .form-field input:not([type="checkbox"]):not([type="submit"]):focus {
  border-color: #f25824;
  box-shadow: 0 0 0 3px rgba(242, 88, 36, 0.10);
  outline: none;
}

/* Dropdown (nesty) improvements */
form#new_request .form-field .nesty-input {
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  height: 44px;
  line-height: 44px;
  padding: 0 14px;
  font-size: 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form#new_request .form-field .nesty-input:focus,
form#new_request .form-field .nesty-input.open {
  border-color: #f25824;
  box-shadow: 0 0 0 3px rgba(242, 88, 36, 0.10);
  outline: none;
}

/* Textarea */
form#new_request .form-field textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  min-height: 100px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form#new_request .form-field textarea:focus {
  border-color: #f25824;
  box-shadow: 0 0 0 3px rgba(242, 88, 36, 0.10);
  outline: none;
}

/* Helper / description text */
form#new_request .form-field p {
  font-size: 12px;
  color: #888888;
  margin: 5px 0 0;
  letter-spacing: 0;
}

/* Upload dropzone */
form#new_request #upload-dropzone {
  border: 1.5px dashed #e0e0e0;
  border-radius: 6px;
  padding: 16px;
  transition: border-color 0.2s ease;
}

form#new_request #upload-dropzone:hover {
  border-color: #f25824;
}

/* Submit button */
form#new_request footer input[type="submit"] {
  background: #f25824;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.1s ease;
}

form#new_request footer input[type="submit"]:hover {
  background: #d94d1f;
  transform: translateY(-1px);
}

form#new_request footer input[type="submit"]:active {
  transform: translateY(0);
}
