/*Mixins and variables*/
/*Base*/
/*Reset the box-sizing*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}
/*Body reset*/
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

[dir] body {
  background-color: rgba(255, 255, 255, 1);
}

[dir] .title-block {
  margin-bottom: calc(10px * 4);
}

.title-block p {
  color: #90a4ae;
}
/*Reset fonts for relevant elements*/
input,
button,
select,
textarea {
  display: block;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

input::-moz-placeholder {
  color: #90a4ae;
  opacity: 1;
}

button::-moz-placeholder {
  color: #90a4ae;
  opacity: 1;
}

select::-moz-placeholder {
  color: #90a4ae;
  opacity: 1;
}

textarea::-moz-placeholder {
  color: #90a4ae;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #90a4ae;
}

button:-ms-input-placeholder {
  color: #90a4ae;
}

select:-ms-input-placeholder {
  color: #90a4ae;
}

textarea:-ms-input-placeholder {
  color: #90a4ae;
}

input::-webkit-input-placeholder {
  color: #90a4ae;
}

button::-webkit-input-placeholder {
  color: #90a4ae;
}

select::-webkit-input-placeholder {
  color: #90a4ae;
}

textarea::-webkit-input-placeholder {
  color: #90a4ae;
}

input:not([type="submit"]) {
  width: 100%;
}

[dir] input:not([type="submit"]) {
  padding: 0 calc(10px * 1.5);
  border: 1px solid #eceff1;
  border-radius: 10px;
}

textarea {
  width: 100%;
}

[dir] textarea {
  padding: 0 calc(10px * 1.5);
  border: 1px solid #eceff1;
  border-radius: 10px;
}

input:not([type="submit"]):focus {
  outline: 0;
}

[dir] input:not([type="submit"]):focus {
  border-color: #9ed5e7;
}

textarea:focus {
  outline: 0;
}

[dir] textarea:focus {
  border-color: #9ed5e7;
}

input[type="radio"] {
  display: inline-block;
  width: auto;
}

[dir="ltr"] input[type="radio"] {
  margin-right: calc(10px * 2);
}

[dir="rtl"] input[type="radio"] {
  margin-left: calc(10px * 2);
}

input[type="checkbox"] {
  display: inline-block;
  width: auto;
}

[dir="ltr"] input[type="checkbox"] {
  margin-right: calc(10px * 2);
}

[dir="rtl"] input[type="checkbox"] {
  margin-left: calc(10px * 2);
}

textarea {
  height: 120px;
}

[dir] textarea {
  padding: calc(10px * 1.5);
}

select {
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none !important;
}

.nesty-input {
  height: 36px;
  line-height: 36px;
}

[dir] .nesty-input {
  border: 1px solid #eceff1;
  border-radius: 10px;
}

.form-field .optional {
  color: #617d8b;
}

[dir="ltr"] .form-field .optional {
  margin-left: 4px;
}

[dir="rtl"] .form-field .optional {
  margin-right: 4px;
}

[dir] ul[data-hc-pills-container] {
  border: 1px solid #eceff1;
  border-radius: 10px;
}
/*inks*/
a {
  color: rgba(33, 168, 181, 1);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #156c74;
  text-decoration: none;
}

a.disabled {
  color: #b0bec4;
}

[dir] a.disabled {
  cursor: default;
}

a,
[type="submit"] {
  transition: all 0.2s ease-in;
}

[dir] figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

hr {
  display: block;
  height: 1px;
}

[dir] hr {
  padding: 0;
  margin: calc(10px * 1.5) 0;
  border: 0;
  border-top: 1px solid #b0bec4;
}
/*Remove the gap between audio, canvas, iframes,*/
/*images, videos and the bottom of their containers: */
/*https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  display: block;
}

[dir] iframe {
  margin-bottom: calc(10px * 3);
}
/*Headings*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

[dir] h1 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] h2 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] h3 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] h4 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] h5 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] h6 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] .h1 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] .h2 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] .h3 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] .h4 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] .h5 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] .h6 {
  margin: 0 0 calc(10px * 1.5);
}

[dir] p {
  margin: 0 0 calc(10px * 1.5);
}

[dir] ul {
  margin: 0 0 calc(10px * 1.5);
}

[dir] ol {
  margin: 0 0 calc(10px * 1.5);
}

[dir] h1 {
  margin: 0 0 calc(10px * 2);
}

[dir] h2 {
  margin: 0 0 calc(10px * 2);
}

[dir] h3 {
  margin: 0 0 calc(10px * 2);
}

[dir] .h1 {
  margin: 0 0 calc(10px * 2);
}

[dir] .h2 {
  margin: 0 0 calc(10px * 2);
}

[dir] .h3 {
  margin: 0 0 calc(10px * 2);
}

h1 {
  font-size: calc(14px * 2.375);
}

.h1 {
  font-size: calc(14px * 2.375);
}

h2 {
  font-size: calc(14px * 2);
}

.h2 {
  font-size: calc(14px * 2);
}

h3 {
  font-size: calc(14px * 1.625);
}

.h3 {
  font-size: calc(14px * 1.625);
}

h4 {
  font-size: calc(14px * 1.375);
}

.h4 {
  font-size: calc(14px * 1.375);
}

h5 {
  font-size: calc(14px * 1.25);
}

.h5 {
  font-size: calc(14px * 1.25);
}

h6 {
  font-size: calc(14px * 1.125);
}

.h6 {
  font-size: calc(14px * 1.125);
}

b,
strong {
  font-weight: 600;
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}
/*Abbreviations and acronyms*/
[dir] abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #90a4ae;
}

[dir] abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #90a4ae;
}

.list-unstyled {
  list-style: none;
}

[dir="ltr"] .list-unstyled {
  padding-left: 0;
}

[dir="rtl"] .list-unstyled {
  padding-right: 0;
}

.is-hidden,
.hidden,
[hidden] {
  display: none !important;
}

.is-overflow {
  overflow: hidden;
}

code {
  text-align: left;
}

.powered-by-zendesk {
  display: none;
}

.visibility-hidden,
.recent-activity-accessibility-label,
.pagination-first-text,
.pagination-last-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

[dir] .visibility-hidden,
[dir] .recent-activity-accessibility-label,
[dir] .pagination-first-text,
[dir] .pagination-last-text {
  padding: 0;
  margin: -1px;
  border: 0;
}
/*Components*/
[dir] .container {
  padding: 0 calc(10px * 3);
  margin: 0 auto;
}
@media (max-width: 768px) {
  [dir] .container {
    padding: 0 calc(10px * 1.5);
  }
}

.wrapper {
  position: relative;
  overflow-x: hidden;
}

[dir] .wrapper {
  margin: auto;
}

.wrapper .container {
  display: flex;
}

.sidebar,
.topbar__col--logo {
  width: 31.5%;
}

.main-wrapper,
.topbar__col--nav {
  display: flex;
  width: 68.5%;
  justify-content: flex-start;
}

@media (min-width: 1200px) {
  .sidebar,
  .topbar__col--logo {
    width: 29.5%;
  }

  .main-wrapper,
  .topbar__col--nav {
    display: flex;
    width: 72.5%;
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .main-wrapper,
  .topbar__col--nav {
    width: 100%;
  }
}

.main-wrapper__inner,
.topbar-nav {
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 1024px) {
  .main-wrapper__inner,
  .topbar-nav {
    max-width: unset;
  }
}

.sidebar__inner,
.topbar-logo {
  width: 300px;
}

.main-wrapper__inner {
  display: flex;
  min-height: 105vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

[dir="ltr"] .main-wrapper__inner {
  padding: calc(10px * 4) 0 0 calc(10px * 10);
}

[dir="rtl"] .main-wrapper__inner {
  padding: calc(10px * 4) calc(10px * 10) 0 0;
}
@media (max-width: 1200px) {
  [dir="ltr"] .main-wrapper__inner {
    padding-left: calc(10px * 5);
  }

  [dir="rtl"] .main-wrapper__inner {
    padding-right: calc(10px * 5);
  }
}
@media (max-width: 1024px) {
  .main-wrapper__inner {
    width: 100%;
    min-height: calc(100vh - 167px);
  }

  [dir="ltr"] .main-wrapper__inner {
    padding-left: 0;
  }

  [dir="rtl"] .main-wrapper__inner {
    padding-right: 0;
  }
}

.article-column-toc {
  display: none;
}

.toc-enabled .article-row {
  display: flex;
  flex-wrap: wrap;
}

.toc-enabled .article-column-body {
  width: 100%;
}

.toc-enabled .article-column-toc {
  display: block;
  width: 100%;
}

[dir="ltr"] .toc-enabled .main-wrapper__inner {
  padding-left: calc(10px * 5);
}

[dir="rtl"] .toc-enabled .main-wrapper__inner {
  padding-right: calc(10px * 5);
}
@media (min-width: 768px) {
  .toc-enabled .article-column-body {
    width: 70%;
  }

  .toc-enabled .article-column-toc {
    width: 30%;
  }
}

[dir="ltr"] .article-column-toc {
  padding-left: 40px;
}

[dir="rtl"] .article-column-toc {
  padding-right: 30px;
}
/*Default button*/
.btn--default {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .btn--default {
  padding: 10px 10px;
  background: #FFFFFF;
  border: 1px solid #BDBDBD;
  border-radius: 24px;
  margin-bottom: 15px;
  font-family: 'Montserrat';
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.49875px;
  text-transform: uppercase;
  color: #767676;
}

.login {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .login {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.article-unsubscribe {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .article-unsubscribe {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.post-subscribe {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .post-subscribe {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.post-unsubscribe {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .post-unsubscribe {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.section-subscribe button {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .section-subscribe button {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.article-subscribe button {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .article-subscribe button {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.article-vote-controls__item {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .article-vote-controls__item {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.community-follow button {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .community-follow button {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.requests-table-toolbar .organization-subscribe button {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .requests-table-toolbar .organization-subscribe button {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.subscriptions-subscribe button {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .subscriptions-subscribe button {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.edit-profile-button a {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .edit-profile-button a {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.pagination-next-link {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .pagination-next-link {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.pagination-prev-link {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .pagination-prev-link {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.pagination-first-link {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .pagination-first-link {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.pagination-last-link {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #37474f;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .pagination-last-link {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background: transparent;
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.btn--default:after,
.login:after,
.article-unsubscribe:after,
.post-subscribe:after,
.post-unsubscribe:after,
.section-subscribe button:after,
.article-subscribe button:after,
.article-vote-controls__item:after,
.community-follow button:after,
.requests-table-toolbar .organization-subscribe button:after,
.subscriptions-subscribe button:after,
.edit-profile-button a:after,
.pagination-next-link:after,
.pagination-prev-link:after,
.pagination-first-link:after,
.pagination-last-link:after {
  color: rgba(33, 168, 181, 1);
  vertical-align: baseline;
  transition: color 0.2s ease-in;
}

.btn--default:hover {
  color: #ffffff;
}

[dir] .btn--default:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.login:hover {
  color: #ffffff;
}

[dir] .login:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.article-unsubscribe:hover {
  color: #ffffff;
}

[dir] .article-unsubscribe:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.post-subscribe:hover {
  color: #ffffff;
}

[dir] .post-subscribe:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.post-unsubscribe:hover {
  color: #ffffff;
}

[dir] .post-unsubscribe:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.section-subscribe button:hover {
  color: #ffffff;
}

[dir] .section-subscribe button:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.article-subscribe button:hover {
  color: #ffffff;
}

[dir] .article-subscribe button:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.article-vote-controls__item:hover {
  color: #ffffff;
}

[dir] .article-vote-controls__item:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.community-follow button:hover {
  color: #ffffff;
}

[dir] .community-follow button:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.requests-table-toolbar .organization-subscribe button:hover {
  color: #ffffff;
}

[dir] .requests-table-toolbar .organization-subscribe button:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.subscriptions-subscribe button:hover {
  color: #ffffff;
}

[dir] .subscriptions-subscribe button:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.edit-profile-button a:hover {
  color: #ffffff;
}

[dir] .edit-profile-button a:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.pagination-next-link:hover {
  color: #ffffff;
}

[dir] .pagination-next-link:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.pagination-prev-link:hover {
  color: #ffffff;
}

[dir] .pagination-prev-link:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.pagination-first-link:hover {
  color: #ffffff;
}

[dir] .pagination-first-link:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.pagination-last-link:hover {
  color: #ffffff;
}

[dir] .pagination-last-link:hover {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.btn--default:hover:after {
  color: #ffffff;
}

.login:hover:after {
  color: #ffffff;
}

.article-unsubscribe:hover:after {
  color: #ffffff;
}

.post-subscribe:hover:after {
  color: #ffffff;
}

.post-unsubscribe:hover:after {
  color: #ffffff;
}

.section-subscribe button:hover:after {
  color: #ffffff;
}

.article-subscribe button:hover:after {
  color: #ffffff;
}

.article-vote-controls__item:hover:after {
  color: #ffffff;
}

.community-follow button:hover:after {
  color: #ffffff;
}

.requests-table-toolbar .organization-subscribe button:hover:after {
  color: #ffffff;
}

.subscriptions-subscribe button:hover:after {
  color: #ffffff;
}

.edit-profile-button a:hover:after {
  color: #ffffff;
}

.pagination-next-link:hover:after {
  color: #ffffff;
}

.pagination-prev-link:hover:after {
  color: #ffffff;
}

.pagination-first-link:hover:after {
  color: #ffffff;
}

.pagination-last-link:hover:after {
  color: #ffffff;
}
/*Filled button*/
.btn--dark {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .btn--dark {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background-color: rgba(33, 168, 181, 1);
  border: calc(1px * 2) solid transparent;
  border-radius: 50px;
}

.btn--primary {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .btn--primary {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background-color: rgba(33, 168, 181, 1);
  border: calc(1px * 2) solid transparent;
  border-radius: 50px;
}

[type="submit"] {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] [type="submit"] {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background-color: rgba(33, 168, 181, 1);
  border: calc(1px * 2) solid transparent;
  border-radius: 50px;
}

.request-table-organization__col--button a {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .request-table-organization__col--button a {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background-color: rgba(33, 168, 181, 1);
  border: calc(1px * 2) solid transparent;
  border-radius: 50px;
}

.topic-subscribe .dropdown-toggle {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .topic-subscribe .dropdown-toggle {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background-color: rgba(33, 168, 181, 1);
  border: calc(1px * 2) solid transparent;
  border-radius: 50px;
}

.profile-header__options a {
  display: inline-flex;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
  transition: all 0.2s ease-in;
  align-items: center;
  justify-content: center;
}

[dir] .profile-header__options a {
  padding: calc(10px * 1.2) calc(10px * 1.8);
  background-color: rgba(33, 168, 181, 1);
  border: calc(1px * 2) solid transparent;
  border-radius: 50px;
}

.btn--dark:after,
.btn--primary:after,
[type="submit"]:after,
.request-table-organization__col--button a:after,
.topic-subscribe .dropdown-toggle:after,
.profile-header__options a:after {
  vertical-align: baseline;
  transition: color 0.2s ease-in;
}

.btn--dark:hover {
  color: #ffffff;
}

[dir] .btn--dark:hover {
  background-color: #156c74;
  border-color: #156c74;
}

.btn--primary:hover {
  color: #ffffff;
}

[dir] .btn--primary:hover {
  background-color: #156c74;
  border-color: #156c74;
}

[type="submit"]:hover {
  color: #ffffff;
}

[dir] [type="submit"]:hover {
  background-color: #156c74;
  border-color: #156c74;
}

.request-table-organization__col--button a:hover {
  color: #ffffff;
}

[dir] .request-table-organization__col--button a:hover {
  background-color: #156c74;
  border-color: #156c74;
}

.topic-subscribe .dropdown-toggle:hover {
  color: #ffffff;
}

[dir] .topic-subscribe .dropdown-toggle:hover {
  background-color: #156c74;
  border-color: #156c74;
}

.profile-header__options a:hover {
  color: #ffffff;
}

[dir] .profile-header__options a:hover {
  background-color: #156c74;
  border-color: #156c74;
}

[dir] .btn--small {
  padding: calc(10px / 2) calc(10px * 1.8) !important;
}

[dir] [type="submit"] {
  padding: calc(10px / 2) calc(10px * 1.8) !important;
}

[dir] .topic-subscribe .dropdown-toggle {
  padding: calc(10px / 2) calc(10px * 1.8) !important;
}

[dir] .profile-header__options a {
  padding: calc(10px / 2) calc(10px * 1.8) !important;
}

[dir] .community-follow button {
  padding: calc(10px / 2) calc(10px * 1.8) !important;
}

.submit-ticket .btn:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  content: "\f30b";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .submit-ticket .btn:after {
  margin-left: 10px;
}

[dir="rtl"] .submit-ticket .btn:after {
  margin-right: 10px;
}

.login:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .login:after {
  margin-left: 10px;
}

[dir="rtl"] .login:after {
  margin-right: 10px;
}

.section-subscribe button,
.article-subscribe button,
.article-unsubscribe,
.post-subscribe,
.post-unsubscribe {
  flex-shrink: 0;
}

[dir] .section-subscribe button,
[dir] .article-subscribe button,
[dir] .article-unsubscribe,
[dir] .post-subscribe,
[dir] .post-unsubscribe {
  background-color: transparent;
}

.section-subscribe button:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .section-subscribe button:after {
  margin-left: 10px;
}

[dir="rtl"] .section-subscribe button:after {
  margin-right: 10px;
}

.article-subscribe button:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .article-subscribe button:after {
  margin-left: 10px;
}

[dir="rtl"] .article-subscribe button:after {
  margin-right: 10px;
}

.article-unsubscribe:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .article-unsubscribe:after {
  margin-left: 10px;
}

[dir="rtl"] .article-unsubscribe:after {
  margin-right: 10px;
}

.post-subscribe:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .post-subscribe:after {
  margin-left: 10px;
}

[dir="rtl"] .post-subscribe:after {
  margin-right: 10px;
}

.post-unsubscribe:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .post-unsubscribe:after {
  margin-left: 10px;
}

[dir="rtl"] .post-unsubscribe:after {
  margin-right: 10px;
}
@media (max-width: 1024px) {
  .section-subscribe button,
  .article-subscribe button,
  .article-unsubscribe,
  .post-subscribe,
  .post-unsubscribe {
    position: relative;
    width: 42px;
    height: 42px;
    text-indent: -9999px;
  }

  [dir] .section-subscribe button,
  [dir] .article-subscribe button,
  [dir] .article-unsubscribe,
  [dir] .post-subscribe,
  [dir] .post-unsubscribe {
    padding: 0;
  }

  .section-subscribe button:after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    font-size: calc(14px * 1.375);
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }

  [dir="ltr"] .section-subscribe button:after {
    right: 0;
    left: 0;
    margin-left: 0;
  }

  [dir="rtl"] .section-subscribe button:after {
    right: 0;
    left: 0;
    margin-right: 0;
  }

  .article-subscribe button:after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    font-size: calc(14px * 1.375);
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }

  [dir="ltr"] .article-subscribe button:after {
    right: 0;
    left: 0;
    margin-left: 0;
  }

  [dir="rtl"] .article-subscribe button:after {
    right: 0;
    left: 0;
    margin-right: 0;
  }

  .article-unsubscribe:after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    font-size: calc(14px * 1.375);
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }

  [dir="ltr"] .article-unsubscribe:after {
    right: 0;
    left: 0;
    margin-left: 0;
  }

  [dir="rtl"] .article-unsubscribe:after {
    right: 0;
    left: 0;
    margin-right: 0;
  }

  .post-subscribe:after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    font-size: calc(14px * 1.375);
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }

  [dir="ltr"] .post-subscribe:after {
    right: 0;
    left: 0;
    margin-left: 0;
  }

  [dir="rtl"] .post-subscribe:after {
    right: 0;
    left: 0;
    margin-right: 0;
  }

  .post-unsubscribe:after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    font-size: calc(14px * 1.375);
    text-indent: 0;
    align-items: center;
    justify-content: center;
  }

  [dir="ltr"] .post-unsubscribe:after {
    right: 0;
    left: 0;
    margin-left: 0;
  }

  [dir="rtl"] .post-unsubscribe:after {
    right: 0;
    left: 0;
    margin-right: 0;
  }
}

.breadcrumbs {
  display: none;
  list-style-type: none;
  flex-wrap: wrap;
}

[dir] .breadcrumbs {
  padding: 0;
  margin-bottom: calc(10px * 3);
}

.post-page .breadcrumbs,
.topic-page .breadcrumbs {
  display: flex;
}

.breadcrumbs li:after {
  display: inline-block;
  color: #90a4ae;
  content: ">";
}

[dir] .breadcrumbs li:after {
  padding: 0 10px;
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs a {
  color: #90a4ae;
}

.breadcrumbs a:hover {
  color: rgba(33, 168, 181, 1);
}

.breadcrumbs--search-results {
  display: flex;
}

[dir] .breadcrumbs--search-results {
  margin-bottom: 10px;
}

.topbar {
  position: relative;
  z-index: 3;
}

[dir] .topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eceff1;
}

.topbar__inner {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}

[dir] .topbar__inner {
  padding-top: calc(10px * 2);
  padding-bottom: calc(10px * 2);
}

.topbar__col {
  display: flex;
}

.topbar__col--logo {
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .topbar__col--logo {
    flex-shrink: 0;
  }
}

.topbar__col--logo a {
  display: flex;
  max-width: 300px;
  justify-content: flex;
  align-items: center;
}

.topbar__col--logo img {
  max-height: 50px !important;
}

.topbar__col--logo .help-center-name {
  font-size: calc(14px * 1.25);
  color: #37474f;
  text-transform: uppercase;
  flex-shrink: 0;
}

[dir="ltr"] .topbar__col--logo .help-center-name {
  margin-left: 10px;
}

[dir="rtl"] .topbar__col--logo .help-center-name {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .topbar__col--logo .help-center-name {
    display: none;
  }
}

.topbar__col--nav {
  align-items: center;
}

[dir="ltr"] .topbar__col--nav {
  padding-left: 10px;
}

[dir="rtl"] .topbar__col--nav {
  padding-right: 10px;
}

.topbar-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .topbar-nav {
    justify-content: flex-end;
  }
}

.topbar__controls {
  display: flex;
  align-items: center;
}

[dir="ltr"] .topbar__controls .language-selector {
  margin-left: 10px;
}

[dir="rtl"] .topbar__controls .language-selector {
  margin-right: 10px;
}

[dir="ltr"] .topbar__controls .login {
  margin-left: 10px;
}

[dir="rtl"] .topbar__controls .login {
  margin-right: 10px;
}

.sidebar {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

[dir="ltr"] .sidebar {
  border-right: 1px solid #eceff1;
}

[dir="rtl"] .sidebar {
  border-left: 1px solid #eceff1;
}
@media (max-width: 1024px) {
  .sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: 414px;
    transition: transform 0.2s ease-in;
  }

  [dir="ltr"] .sidebar {
    left: 0;
    transform: translateX(-100%);
  }

  [dir="rtl"] .sidebar {
    right: 0;
    transform: translateX(100%);
  }

  [dir] .sidebar.is-active {
    transform: translateX(0);
  }
}

.sidebar:before {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  content: "";
}

[dir] .sidebar:before {
  background-color: #fbfcfd;
}

[dir="ltr"] .sidebar:before {
  right: 0;
}

[dir="rtl"] .sidebar:before {
  left: 0;
}

.sidebar__wrapper {
  display: flex;
  width: 320px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.sidebar__wrapper.is-fixed {
  position: fixed;
  top: 0;
}

[dir="ltr"] .sidebar__wrapper.is-fixed {
  transform: translateX(-100%);
}

[dir="rtl"] .sidebar__wrapper.is-fixed {
  transform: translateX(100%);
}
@media (max-width: 1024px) {
  .sidebar__wrapper {
    height: calc(100vh - 170px);
  }
}

.sidebar__inner {
  flex-shrink: 0;
}

[dir="ltr"] .sidebar__inner {
  padding: calc(10px * 4) calc(10px * 1.5) 0 0;
}

[dir="rtl"] .sidebar__inner {
  padding: calc(10px * 4) 0 0 calc(10px * 1.5);
}
@media (max-width: 1024px) {
  .sidebar__inner {
    width: 100%;
  }

  [dir] .sidebar__inner {
    padding: calc(10px * 3) calc(10px * 3) 0;
  }
}

.sidebar__image {
  width: 100%;
}

.sidebar__image img {
  display: block;
  height: auto !important;
}

[dir] .sidebar__top-nav {
  margin-bottom: calc(10px * 4);
}

[dir] .sidebar__top-nav li {
  margin-bottom: calc(10px * 1.5);
}

.sidebar__link {
  display: flex;
  color: #90a4ae;
  align-items: center;
}

.sidebar__link:before {
  display: flex;
  width: 26px;
  height: 26px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  align-items: center;
  justify-content: center;
}

[dir] .sidebar__link:before {
  text-align: center;
  background-color: #ffffff;
  border-radius: 50%;
}

[dir="ltr"] .sidebar__link:before {
  margin-right: calc(10px * 2);
}

[dir="rtl"] .sidebar__link:before {
  margin-left: calc(10px * 2);
}

.sidebar__link--home:before {
  content: "\f015";
}

.sidebar__link--community:before {
  content: "\f0c0";
}

.sidebar__link--request:before {
  content: "\f093";
}

[dir] .sidebar__content-block {
  margin-bottom: calc(10px * 1.5);
}

[dir] .sidebar-toggle {
  background-color: #fbfcfd;
  border-bottom: 1px solid #eceff1;
}

[dir="ltr"] .sidebar-toggle {
  box-shadow: 2px 2px 30px rgba(#eceff1, 0.75);
}

[dir="rtl"] .sidebar-toggle {
  box-shadow: -2px 2px 30px rgba(#eceff1, 0.75);
}
@media (min-width: 1025px) {
  .sidebar-toggle {
    display: none;
  }
}

.sidebar-toggle .container {
  display: flex;
  height: 70px;
  align-items: center;
}

.sidebar-toggle__link {
  display: flex;
  color: inherit !important;
  align-items: center;
}

.sidebar-toggle__text--menu {
  display: inline-block;
}

.is-active .sidebar-toggle__text--menu {
  display: none;
}

.sidebar-toggle__text--close {
  display: none;
}

.is-active .sidebar-toggle__text--close {
  display: inline-block;
}

.sidebar-toggle__burger {
  display: inline-block;
  width: 20px;
}

[dir="ltr"] .sidebar-toggle__burger {
  margin-right: calc(10px * 1.5);
}

[dir="rtl"] .sidebar-toggle__burger {
  margin-left: calc(10px * 1.5);
}

.search-close {
  display: inline-block;
  width: 20px;
}

[dir="ltr"] .search-close {
  margin-right: calc(10px * 1.5);
}

[dir="rtl"] .search-close {
  margin-left: calc(10px * 1.5);
}

.sidebar-toggle__burger span,
.search-close span {
  position: relative;
  width: 70% !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[dir] .sidebar-toggle__burger span,
[dir] .search-close span {
  margin-top: 8px;
  margin-bottom: 8px;
}

.sidebar-toggle__burger span {
  display: block;
  width: 100%;
  height: 3px;
}

[dir] .sidebar-toggle__burger span {
  background-color: #37474f;
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.sidebar-toggle__burger span:before {
  display: block;
  width: 100%;
  height: 3px;
}

[dir] .sidebar-toggle__burger span:before {
  background-color: #37474f;
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.sidebar-toggle__burger span:after {
  display: block;
  width: 100%;
  height: 3px;
}

[dir] .sidebar-toggle__burger span:after {
  background-color: #37474f;
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.search-close span {
  display: block;
  width: 100%;
  height: 3px;
}

[dir] .search-close span {
  background-color: #37474f;
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.search-close span:before {
  display: block;
  width: 100%;
  height: 3px;
}

[dir] .search-close span:before {
  background-color: #37474f;
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.search-close span:after {
  display: block;
  width: 100%;
  height: 3px;
}

[dir] .search-close span:after {
  background-color: #37474f;
  border-radius: 2px;
  transition-duration: 0.3s;
  transition-property: background-color, transform;
}

.sidebar-toggle__burger span:before,
.sidebar-toggle__burger span:after,
.search-close span:before,
.search-close span:after {
  position: absolute;
  width: 130%;
  content: "";
}

.sidebar-toggle__burger span:before,
.search-close span:before {
  top: -8px;
}

.sidebar-toggle__burger span:after,
.search-close span:after {
  top: 8px;
}

[dir] .is-active .sidebar-toggle__burger span,
[dir] .is-active .search-close span {
  background-color: transparent;
}

[dir="ltr"] .is-active .sidebar-toggle__burger span:before,
[dir="ltr"] .is-active .search-close span:before {
  transform: translateY(8px) rotate(45deg);
}

[dir="rtl"] .is-active .sidebar-toggle__burger span:before,
[dir="rtl"] .is-active .search-close span:before {
  transform: translateY(8px) rotate(-45deg);
}

[dir="ltr"] .is-active .sidebar-toggle__burger span:after,
[dir="ltr"] .is-active .search-close span:after {
  transform: translateY(-8px) rotate(-45deg);
}

[dir="rtl"] .is-active .sidebar-toggle__burger span:after,
[dir="rtl"] .is-active .search-close span:after {
  transform: translateY(-8px) rotate(45deg);
}

.sidenav ul {
  list-style-type: none;
}

[dir] .sidenav ul {
  padding: 0;
  margin: 0 0 calc(10px * 3);
}

[dir] .sidenav li {
  margin-bottom: 10px;
}

.sidenav a,
.sidenav span {
  display: block;
  line-height: 1.2;
}

[dir="ltr"] .sidenav__article.is-active a {
  padding-left: 10px;
  border-left: 4px solid rgba(33, 168, 181, 1);
}

[dir="rtl"] .sidenav__article.is-active a {
  padding-right: 10px;
  border-right: 4px solid rgba(33, 168, 181, 1);
}

.sidenav__category-name {
  font-size: calc(14px * 1.25);
  color: #37474f;
}

[dir] .sidenav__category-name {
  margin-bottom: calc(10px * 1.5);
  cursor: pointer;
}

.sidenav__category-name:hover {
  color: #37474f;
}

.sidenav__section-name {
  font-size: calc(14px * 0.875);
  color: #90a4ae;
  text-transform: uppercase;
}

[dir] .sidenav__section-name {
  margin-bottom: calc(10px * 1.5);
  cursor: pointer;
}

.sidenav__section-name:hover {
  color: #90a4ae;
}

.sidenav__article-name {
  font-size: calc(14px * 0.95);
}

[dir="ltr"] .sidenav__articles-list .sidenav__section {
  padding-left: 15px;
}

[dir="rtl"] .sidenav__articles-list .sidenav__section {
  padding-right: 15px;
}

.sidenav__articles-list .sidenav__section-name {
  text-transform: none;
}

.sidebar__content-block .sidenav-btn {
  display: none !important;
}

.search {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 500px;
  height: calc(10px * 5);
  overflow: hidden;
  align-items: center;
}

[dir] .search {
  border: calc(1px * 2) solid #eceff1;
  border-radius: 50px;
}

.search:before {
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 22px;
  height: 22px;
  font-family: "Font Awesome 5 Free";
  font-size: calc(14px * 1.375);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #37474f;
  content: "\f002";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir] .search:before {
  transform: translateY(-50%);
}

[dir="ltr"] .search:before {
  left: 18px;
}

[dir="rtl"] .search:before {
  right: 18px;
}

.search [type="search"] {
  width: 100%;
}

[dir] .search [type="search"] {
  border: 0;
}

[dir="ltr"] .search [type="search"] {
  padding: 10px calc(10px * 1.2) 10px calc(10px * 5);
}

[dir="rtl"] .search [type="search"] {
  padding: 10px calc(10px * 5) 10px calc(10px * 1.2);
}

.search [type="submit"] {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: calc(10px * 5);
  text-indent: -9999px;
}

[dir] .search [type="submit"] {
  padding: 0;
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .search [type="submit"] {
  left: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

[dir="rtl"] .search [type="submit"] {
  right: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.search-open {
  display: none;
  width: calc(10px * 4);
  height: calc(10px * 4);
}

[dir="ltr"] .search-open {
  margin-right: calc(10px * 1.2);
}

[dir="rtl"] .search-open {
  margin-left: calc(10px * 1.2);
}
@media (max-width: 768px) {
  [dir="ltr"] .search-open {
    margin-right: 0;
  }

  [dir="rtl"] .search-open {
    margin-left: 0;
  }
}

.search-open:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: calc(14px * 1.375);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #90a4ae;
  content: "\f002";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.search-close {
  display: none;
  width: calc(10px * 2);
  height: calc(10px * 2);
  align-items: center;
}

[dir] .search-close span {
  background-color: transparent;
}

[dir="ltr"] .search-close span:before {
  transform: translateY(8px) rotate(45deg);
}

[dir="rtl"] .search-close span:before {
  transform: translateY(8px) rotate(-45deg);
}

[dir="ltr"] .search-close span:after {
  transform: translateY(-8px) rotate(-45deg);
}

[dir="rtl"] .search-close span:after {
  transform: translateY(-8px) rotate(45deg);
}
@media (max-width: 1024px) {
  .search {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: auto;
    max-width: unset;
    height: auto;
    transition: transform 0.2s ease-in;
  }

  [dir] .search {
    margin: 0 calc(10px * 3);
    background-color: #ffffff;
    border: 0;
    border-radius: 0;
    transform: translateY(-100%);
  }

  [dir="ltr"] .search {
    right: 0;
    left: 0;
    padding-left: calc(10px * 5);
  }

  [dir="rtl"] .search {
    right: 0;
    left: 0;
    padding-right: calc(10px * 5);
  }

  [dir] .search.is-active {
    transform: translateY(0);
  }

  .search:before {
    color: #90a4ae;
  }

  [dir="ltr"] .search:before {
    left: 0;
  }

  [dir="rtl"] .search:before {
    right: 0;
  }

  .search [type="search"] {
    width: 100%;
  }

  [dir] .search [type="search"] {
    padding: 10px 0;
    border: 0;
    border-bottom: 2px solid #eceff1;
    border-radius: 0;
  }

  [dir="ltr"] .search [type="search"] {
    margin-right: calc(10px * 2.5);
  }

  [dir="rtl"] .search [type="search"] {
    margin-left: calc(10px * 2.5);
  }

  .search-open,
  .search-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [dir="ltr"] .search-open,
  [dir="ltr"] .search-close {
    margin-right: 0;
  }

  [dir="rtl"] .search-open,
  [dir="rtl"] .search-close {
    margin-left: 0;
  }

  [dir="ltr"] .search-open {
    margin-right: calc(10px / 2);
  }

  [dir="rtl"] .search-open {
    margin-left: calc(10px / 2);
  }
}
@media (max-width: 768px) {
  [dir] .search {
    margin: 0 calc(10px * 1.5);
  }
}

[dir] .home-categories {
  margin-bottom: calc(10px * 3);
}

.home-categories ul {
  display: flex;
  flex-wrap: wrap;
}

[dir] .home-categories ul {
  margin: 0 -15px;
}

.home-categories__item {
  width: calc(50% - 30px);
  border: 1px solid #eceff1;
	border-radius: 10px;
}

[dir] .home-categories__item {
  margin: 0 calc(10px * 1.5) calc(10px * 3);
}
@media (max-width: 1024px) {
  .home-categories__item {
    width: 100%;
  }
}

.home-categories__link {
  display: flex;
  align-items: flex-start;
}

[dir] .home-categories__link {
  padding: calc(10px * 2.5);
}
@media (max-width: 1200px) {
  [dir] .home-categories__link {
    padding: calc(10px * 2.4) calc(10px * 1.4);
  }
}
@media (max-width: 1024px) {
  .home-categories__link {
    min-height: auto;
    flex-direction: column;
  }

  [dir] .home-categories__link {
    text-align: center;
  }
}

.home-categories__link:hover .home-categories__title,
.home-categories__link:hover .home-categories__content {
  color: rgba(33, 168, 181, 1);
  font-weight: 600;
}

.home-categories__icon {
  display: block;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

[dir] .home-categories__icon {
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 1025px) {
  [dir="ltr"] .home-categories__icon {
    margin-right: 10px;
  }

  [dir="rtl"] .home-categories__icon {
    margin-left: 10px;
  }
}
@media (min-width: 1201px) {
  [dir="ltr"] .home-categories__icon {
    margin-right: calc(10px * 2);
  }

  [dir="rtl"] .home-categories__icon {
    margin-left: calc(10px * 2);
  }
}

[dir] .home-categories__icon--115000864409 {
  background-image: url("$assets-115000864409-svg");
}

[dir] .home-categories__icon--115000864429 {
  background-image: url("$assets-115000864429-svg");
}

[dir] .home-categories__icon--115000865505 {
  background-image: url("$assets-115000865505-svg");
}

[dir] .home-categories__icon--115000865525 {
  background-image: url("$assets-115000865525-svg");
}

.home-categories__content {
  color: #90a4ae;
  transition: color 0.2s ease-in;
}

[dir] .home-categories__content p {
  margin-bottom: 0;
}

.home-categories__title {
  color: #37474f;
  transition: color 0.2s ease-in;
  font-weight: 600;
}
@media (max-width: 1024px) {
  [dir] .home-categories__title {
    margin-bottom: 10px;
    font-weight: 600;
  }
}

[dir] .submit-ticket {
  padding: calc(10px * 4) calc(10px * 1.5);
  margin-bottom: calc(10px * 3);
  text-align: center;
  border: 1px solid #eceff1;
  border-radius: 10px;
}

.submit-ticket p {
  color: #90a4ae;
}

[dir] .submit-ticket p {
  margin-bottom: calc(10px * 2.5);
}

[dir] .tabs {
  margin-bottom: calc(10px * 2);
}

.tab {
  display: block;
}

[dir] .tab {
  padding: calc(10px * 3);
  margin-top: -1px;
  border: 1px solid #eceff1;
}

[dir="ltr"] .tab {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

[dir="rtl"] .tab {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

[dir] .tab p:last-child {
  margin-bottom: 0;
}

[dir] .home-tabs .tab {
  padding-top: calc(10px * 4);
  border-bottom: 0;
}

[dir="ltr"] .home-tabs .tab {
  padding-right: 0;
  padding-left: 0;
  border-right: 0;
  border-left: 0;
}

[dir="rtl"] .home-tabs .tab {
  padding-right: 0;
  padding-left: 0;
  border-right: 0;
  border-left: 0;
}

[dir] .home-tabs .tabs-link {
  padding: calc(10px * 1.5) calc(10px * 2);
}

[dir="ltr"] .home-tabs .tabs-link {
  text-align: left;
}

[dir="rtl"] .home-tabs .tabs-link {
  text-align: right;
}

.tabs-menu {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  [dir] .tabs-menu {
    border: 1px solid #eceff1;
  }

  [dir="ltr"] .tabs-menu {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  [dir="rtl"] .tabs-menu {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

.tabs-link {
  display: block;
  font-size: calc(14px * 1.25);
  color: #90a4ae;
}

[dir] .tabs-link {
  padding: 10px calc(10px * 3);
  text-align: center;
  cursor: pointer;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
}

[dir="ltr"] .tabs-link {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

[dir="rtl"] .tabs-link {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

[dir] .tabs-link.is-active {
  background-color: #ffffff;
}

.tabs-link .fa {
  position: relative;
  top: -1px;
  display: inline-flex;
  width: 26px;
  height: 26px;
  font-size: calc(14px * 0.75);
  color: #b0bec4;
  align-items: center;
  justify-content: center;
}

[dir] .tabs-link .fa {
  text-align: center;
  background-color: #fbfcfd;
  border: 1px solid #eceff1;
  border-radius: 50%;
}

[dir="ltr"] .tabs-link .fa {
  margin-right: 10px;
}

[dir="rtl"] .tabs-link .fa {
  margin-left: 10px;
}
@media (max-width: 768px) {
  .tabs-link {
    width: 100% !important;
  }

  [dir] .tabs-link {
    border: 0;
    border-bottom: 1px solid #eceff1;
    border-radius: 0;
  }

  [dir="ltr"] .tabs-link {
    text-align: left;
  }

  [dir="rtl"] .tabs-link {
    text-align: right;
  }

  [dir] .tabs-link:last-child {
    border-bottom: 0;
  }
}

.tabs-link.is-active {
  color: #37474f;
}

[dir] .tabs-link.is-active {
  cursor: pointer;
  border-color: #eceff1;
}

.tabs-link.is-active .fa {
  color: #8d6e63;
}

[dir] .tabs-link.is-active .fa {
  background-color: #ffd550;
  border-color: #ffb74d;
  box-shadow: 0 1px 8px rgba(#8d6e63, 0.12);
}

[dir] .tabs-link.is-active:hover {
  cursor: default;
}
@media (min-width: 769px) {
  [dir] .tabs-link.is-active {
    border-bottom-color: transparent;
  }
}

[dir] .tabs--colored-1 .is-active {
  background-color: #fbfcfd;
}

[dir] .tabs--colored-1 .tab {
  background-color: #fbfcfd;
}

.tabs--colored-2 .is-active {
  color: #ffffff;
}

[dir] .tabs--colored-2 .is-active {
  background-color: rgba(33, 168, 181, 1);
}

.tabs--colored-2 .is-active:hover {
  color: #ffffff;
}

[dir] .tabs--colored-2 .is-active:hover {
  background-color: rgba(33, 168, 181, 1);
}

[dir] .tabs--colored-2 .tabs-link {
  border: 0;
}

[dir] .tabs--colored-2 .tab {
  margin-top: 0;
  background-color: #fbfcfd;
}

table {
  border-spacing: 0px;
  border-collapse: collapse;
}

[dir="ltr"] th {
  text-align: left;
}

[dir="rtl"] th {
  text-align: right;
}

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

[dir] .table {
  margin-bottom: calc(10px * 3);
}

.table th,
.wysiwyg-table th {
  vertical-align: top;
}

[dir] .table th,
[dir] .wysiwyg-table th {
  padding: 10px;
  border: 1px solid #e4e4e7;
}

.table td,
.wysiwyg-table td{
  vertical-align: top;
}

[dir] .table td,
[dir] .wysiwyg-table td {
  padding: 10px;
}

[dir] .table td ,
[dir] .wysiwyg-table td{
  border: 1px solid #e4e4e7;
}

.table thead th,
.wysiwyg-table thead th {
  vertical-align: bottom;
}

[dir] .table tbody + tbody,
[dir] .wysiwyg-table tbody + tbody {
  border-top: 1px solid #b0bec4;
}

[dir] .table .table,
[dir] .wysiwyg-table .wysiwyg-table {
  background-color: #ffffff;
}

.table--color-header th,
.wysiwyg-table.table--color-header th {
  color: #ffffff;
}

[dir] .table--color-header th,
[dir] .wysiwyg-table.table--color-header th{
  background-color: #6C6E9B;
}
/*[dir] .table--color-header th {
  background-color: rgba(33, 168, 181, 1);
}*/

[dir] .table--striped tbody tr:nth-child(odd) {
  background-color: #eceff1;
}

[dir] .table--hover tbody tr:hover {
  background-color: #eceff1;
}

[dir] .table--bordered {
  border: 1px solid #b0bec4;
}

[dir="ltr"] .table--bordered td {
  border-left: 1px solid #b0bec4;
}

[dir="rtl"] .table--bordered td {
  border-right: 1px solid #b0bec4;
}

[dir="ltr"] .table--bordered th {
  border-left: 1px solid #b0bec4;
}

[dir="rtl"] .table--bordered th {
  border-right: 1px solid #b0bec4;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@media (max-width: 768px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  [dir] .table-responsive {
    border: 1px solid #e4e4e7;
  }

  [dir] .table-responsive > .table {
    margin-bottom: 0;
  }

  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}

.note {
  color: #4c626d;
}

[dir] .note {
  margin-top: calc(10px * 3);
  margin-bottom: calc(10px * 3);
}

[dir="ltr"] .note {
  padding-left: calc(10px * 2);
  border-left: 4px solid #cfd8dc;
}

[dir="rtl"] .note {
  padding-right: calc(10px * 2);
  border-right: 4px solid #cfd8dc;
}

[dir] .note p:last-child {
  margin-bottom: 0;
}

[dir] .note--info {
  border-color: rgba(33, 168, 181, 1);
}

[dir] .note--warning {
  border-color: #ffd550;
}

[dir] .note--success {
  border-color: #5cb85c;
}

[dir] .note--danger {
  border-color: #d9534f;
}

[dir] .callout {
  padding: calc(10px * 2.5) calc(10px * 3);
  margin: calc(10px * 3) 0;
  background-color: #eceff1;
}

[dir="ltr"] .callout {
  border-left: 5px solid #b0bec4;
}

[dir="rtl"] .callout {
  border-right: 5px solid #b0bec4;
}

.callout p {
  color: #445a64;
}

[dir] .callout p {
  margin-top: scut-em(10);
}

[dir] .callout p:last-child {
  margin-bottom: 0;
}

.callout a {
  color: rgba(33, 168, 181, 1);
  text-decoration: none;
}

.callout a:hover {
  text-decoration: underline;
}

.callout--default {
  color: #90a4ae;
}

[dir] .callout--default {
  border: 1px solid #90a4ae;
}

[dir] .callout--transparent {
  background: transparent;
  border: 0;
  box-shadow: 0 0 10px #dce2e5;
}

.callout--success {
  color: #37474f;
}

[dir] .callout--success {
  background-color: #eaf6ea;
  border-color: #5cb85c;
}

.callout--success .callout__title {
  color: #5cb85c;
}

.callout--info {
  color: #37474f;
}

[dir] .callout--info {
  background-color: #c2f0f4;
  border-color: rgba(33, 168, 181, 1);
}

.callout--info .callout__title {
  color: rgba(33, 168, 181, 1);
}

.callout--warning {
  color: #37474f;
}

[dir] .callout--warning {
  background-color: #fff8e4;
  border-color: #ffd550;
}

.callout--warning .callout__title {
  color: #ffd550;
}

.callout--danger {
  color: #37474f;
}

[dir] .callout--danger {
  background-color: #fbebea;
  border-color: #d9534f;
}

.callout--danger .callout__title {
  color: #d9534f;
}

.callout--primary {
  color: #37474f;
}

[dir] .callout--primary {
  background-color: #d8f5f8;
  border-color: rgba(33, 168, 181, 1);
}

.callout--primary .callout__title {
  color: rgba(33, 168, 181, 1);
}

[dir] .callout--dashed {
  border: 1px dashed #37474f;
}

.accordion {
  overflow: hidden;
}

[dir] .accordion {
  padding-top: 0;
  margin-bottom: calc(10px * 2);
  border: 1px solid #cfd8dc;
  border-radius: 10px;
}

.accordion__item-title {
  position: relative;
  font-size: calc(14px * 1.25);
}

[dir] .accordion__item-title {
  cursor: pointer;
}

[dir="ltr"] .accordion__item-title {
  padding: calc(10px * 1.5) calc(10px * 2) calc(10px * 1.5) calc(10px * 5);
}

[dir="rtl"] .accordion__item-title {
  padding: calc(10px * 1.5) calc(10px * 5) calc(10px * 1.5) calc(10px * 2);
}

[dir] .accordion__item-title:not(.accordion__item-title--active) {
  border-bottom: 1px solid #cfd8dc;
}

.accordion__item-title:before {
  position: absolute;
  content: "";
}

.accordion__item-content {
  display: none;
}

[dir] .accordion__item-content {
  padding: calc(10px * 2);
  border-bottom: 1px solid #cfd8dc;
}

[dir] .accordion__item-content p:last-child {
  margin-bottom: 0;
}

[dir] .accordion__item:last-child .accordion__item-title {
  border-bottom: none;
}

.accordion--default .accordion__item-title:before {
  top: 50%;
  width: 8px;
  height: 8px;
  transition: transform 0.2s;
}

[dir] .accordion--default .accordion__item-title:before {
  margin-top: -4px;
  border-bottom: calc(1px * 2) solid rgba(33, 168, 181, 1);
}

[dir="ltr"] .accordion--default .accordion__item-title:before {
  left: 22px;
  border-left: calc(1px * 2) solid rgba(33, 168, 181, 1);
  transform: rotate(-45deg);
}

[dir="rtl"] .accordion--default .accordion__item-title:before {
  right: 22px;
  border-right: calc(1px * 2) solid rgba(33, 168, 181, 1);
  transform: rotate(45deg);
}

[dir] .accordion--default .accordion__item-title--active {
  background-color: #f5f6f7;
}

.accordion--default .accordion__item-title--active:before {
  transition: transform 0.2s;
}

[dir="ltr"] .accordion--default .accordion__item-title--active:before {
  transform: rotate(135deg);
}

[dir="rtl"] .accordion--default .accordion__item-title--active:before {
  transform: rotate(-135deg);
}

.accordion--colored .accordion__item-title {
  transition: background-color 0.2s;
}

.accordion--colored .accordion__item-title:before {
  top: 50%;
}

[dir] .accordion--colored .accordion__item-title:before {
  background-color: #cfd6db;
}

.accordion--colored .accordion__item-title:after {
  top: 50%;
}

[dir] .accordion--colored .accordion__item-title:after {
  background-color: #cfd6db;
}

.accordion--colored .accordion__item-title:before {
  width: 10px;
  height: 2px;
}

[dir] .accordion--colored .accordion__item-title:before {
  margin-top: -1px;
}

[dir="ltr"] .accordion--colored .accordion__item-title:before {
  left: 20px;
}

[dir="rtl"] .accordion--colored .accordion__item-title:before {
  right: 20px;
}

.accordion--colored .accordion__item-title:after {
  position: absolute;
  width: 2px;
  height: 10px;
  content: "";
}

[dir] .accordion--colored .accordion__item-title:after {
  margin-top: -5px;
}

[dir="ltr"] .accordion--colored .accordion__item-title:after {
  left: 24px;
}

[dir="rtl"] .accordion--colored .accordion__item-title:after {
  right: 24px;
}

.accordion--colored .accordion__item-title--active {
  color: #ffffff;
  transition: background-color 0.2s;
}

[dir] .accordion--colored .accordion__item-title--active {
  background-color: rgba(33, 168, 181, 1);
}

[dir] .accordion--colored .accordion__item-title--active:before {
  background-color: #ffffff;
}

.accordion--colored .accordion__item-title--active:after {
  display: none;
}

.recent-activity-header {
  display: none;
}

.recent-activity-item-parent {
  display: block;
  font-size: calc(14px * 0.75);
  line-height: 1.2;
  color: #90a4ae;
  text-transform: uppercase;
}

[dir] .recent-activity-item-parent {
  margin-bottom: calc(10px * 2);
}

.tab-articles__list,
.recent-activity-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

[dir] .tab-articles__list,
[dir] .recent-activity-list {
  padding: 0;
  margin: 0;
}

.tab-articles__item {
  width: 50%;
}

[dir="ltr"] .tab-articles__item {
  padding: 0 calc(10px * 2) calc(10px * 2) 0;
}

[dir="rtl"] .tab-articles__item {
  padding: 0 0 calc(10px * 2) calc(10px * 2);
}

.recent-activity-item {
  width: 50%;
}

[dir="ltr"] .recent-activity-item {
  padding: 0 calc(10px * 2) calc(10px * 2) 0;
}

[dir="rtl"] .recent-activity-item {
  padding: 0 0 calc(10px * 2) calc(10px * 2);
}
@media (max-width: 768px) {
  .tab-articles__item,
  .recent-activity-item {
    width: 100%;
  }

  [dir="ltr"] .tab-articles__item,
  [dir="ltr"] .recent-activity-item {
    padding-right: 0;
  }

  [dir="rtl"] .tab-articles__item,
  [dir="rtl"] .recent-activity-item {
    padding-left: 0;
  }
}

.tab-articles__title {
  display: block;
  font-size: calc(14px * 1.125);
  line-height: 1.2;
}

[dir] .tab-articles__title {
  margin-bottom: calc(10px / 2);
}

.recent-activity-item-link {
  display: block;
  font-size: calc(14px * 1.125);
  line-height: 1.2;
}

[dir] .recent-activity-item-link {
  margin-bottom: calc(10px / 2);
}

.tab-articles__discr {
  font-size: 15px;
  color: #90a4ae;
}

.recent-activity-item-meta {
  font-size: 15px;
  color: #90a4ae;
}

.recent-activity-no-activities {
  font-size: 15px;
  color: #90a4ae;
}

[dir] .page-header {
  margin-bottom: calc(10px * 3);
}

.page-header__headline {
  display: block;
  justify-content: space-between;
}

.page-header__headline span {
  color: rgba(33, 168, 181, 1);
}

.page-header__headline .section-subscribe {
  flex-shrink: 0;
}

[dir="ltr"] .page-header__headline .section-subscribe {
  margin-left: 10px;
}

[dir="rtl"] .page-header__headline .section-subscribe {
  margin-right: 10px;
}

.page-header__description {
  line-height: 1.2;
  color: #90a4ae;
}

[dir] .page-header__description {
  margin-bottom: 0;
}

.section-tree {
  display: flex;
  flex-wrap: wrap;
}

.section-tree__column {
  width: 100%;
}

[dir] .section-tree__column {
  margin-bottom: calc(10px * 2);
}

[dir="ltr"] .section-tree__column {
  padding-right: calc(10px * 2);
}

[dir="rtl"] .section-tree__column {
  padding-left: calc(10px * 2);
}
@media (max-width: 768px) {
  .section-tree__column {
    width: 100%;
  }
}

.section__title {
  font-size: calc(14px * 1.375);
}

.section__title-link {
  color: #37474f;
}

[dir] .article-list {
  margin-bottom: 0;
}

.article-list-item {
  font-size: calc(14px * 1.125);
}

[dir] .article-list-item {
  margin-bottom: calc(10px * 0.8);
}

.article-list-item--is-promoted span {
  width: 15px;
  height: 15px;
  font-size: calc(14px * 0.6);
  line-height: 15px;
  color: #8d6e63;
  vertical-align: middle;
  flex-shrink: 0;
}

[dir] .article-list-item--is-promoted span {
  margin-top: -2px;
  text-align: center;
  background-color: #ffd550;
  border-color: #ffb74d;
  border-radius: 50%;
  box-shadow: 0 1px 8px #e4dbd8;
}

[dir="ltr"] .article-list-item--is-promoted span {
  margin-right: calc(10px / 2);
}

[dir="rtl"] .article-list-item--is-promoted span {
  margin-left: calc(10px / 2);
}

[dir] .article {
  margin-bottom: calc(10px * 3);
}

[dir] [data-article-loading] .article {
  margin-bottom: calc(10px * 6);
}

[dir] .article-header {
  padding-bottom: calc(10px * 2.5);
  margin-bottom: calc(10px * 4);
  border-bottom: 1px solid #eceff1;
}

.article-header--small .article-title {
  font-size: calc(14px * 1.625);
}

[dir] .article-header--small .article-title {
  margin-bottom: 10px;
}

[dir] .article-title {
  margin-bottom: calc(10px * 2.5);
}
@media (max-width: 420px) {
  .article-title {
    font-size: calc(14px * 1.625);
  }
}

.article-title span {
  color: rgba(33, 168, 181, 1);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

[dir="ltr"] .article-subscribe {
  margin-left: 10px;
}

[dir="rtl"] .article-subscribe {
  margin-right: 10px;
}

[dir] .article__attachments {
  margin-bottom: calc(10px * 2);
}

[dir] .article-vote {
  padding: calc(10px * 3);
  margin-bottom: calc(10px * 3);
  text-align: center;
  border: 1px solid #eceff1;
  border-radius: 10px;
}

.article-vote-question {
  display: block;
  font-size: calc(14px * 1.25);
}

[dir] .article-vote-question {
  margin-bottom: calc(10px * 1.5);
}

.article-vote-controls {
  display: flex;
  justify-content: center;
}

[dir] .article-vote-controls {
  margin-bottom: calc(10px * 2);
}

.article-vote-controls__item {
  width: 100px;
  font-family: 'Open Sans', sans-serif !important;
}

[dir] .article-vote-controls__item {
  margin: 0 calc(10px * 1.5);
}

.article-vote-controls__item:before {
  font-family: "Font Awesome 5 Free" !important;
  font-size: calc(14px * 1.375);
  font-weight: 900;
  color: rgba(33, 168, 181, 1);
  transition: color 0.2s ease-in;
}

[dir="ltr"] .article-vote-controls__item:before {
  margin-right: 10px;
}

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

.article-vote-controls__item:hover:before {
  color: #ffffff !important;
}

.article-vote-controls__item--up.article-vote-controls__item--voted:before {
  color: #5cb85c;
}

.article-vote-controls__item--down.article-vote-controls__item--voted:before {
  color: #d9534f;
}

.article-vote-count {
  font-size: calc(14px * 0.875);
  color: #90a4ae;
}

[dir] .article-more-questions {
  margin-bottom: calc(10px * 2);
}

[dir] .article-nav {
  margin: calc(10px * 3) 0 calc(10px * 8);
}

[data-article-loading] .article-nav {
  display: none;
}

.article-nav__inner:before,
.article-nav__inner:after {
  display: table;
  content: "";
}

[dir] .article-nav__inner:after {
  clear: both;
}

.article-nav__element {
  display: flex;
  align-items: center;
}

[dir="ltr"] .article-nav__element--prev {
  float: left;
}

[dir="rtl"] .article-nav__element--prev {
  float: right;
}

[dir="ltr"] .article-nav__element--next {
  float: right;
}

[dir="rtl"] .article-nav__element--next {
  float: left;
}

.prev-next-btn {
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
}

.prev-next-btn:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: calc(calc(14px * 1.25));
  font-style: normal;
  font-weight: 900;
  line-height: 12px;
  text-indent: 0;
  transition: transform 0.2s ease-in;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir] .prev-next-btn:before {
  margin-top: 1px;
  text-align: center;
}
@media (max-width: 768px) {
  .prev-next-btn {
    width: 40px;
    height: 40px;
    color: transparent !important;
  }

  [dir] .prev-next-btn {
    border: 2px solid #eceff1;
    border-radius: 50%;
  }

  .prev-next-btn:before {
    position: absolute;
    top: 12px;
    bottom: 0;
    color: rgba(33, 168, 181, 1) !important;
  }

  [dir="ltr"] .prev-next-btn:before {
    right: 0;
    left: 0;
  }

  [dir="rtl"] .prev-next-btn:before {
    right: 0;
    left: 0;
  }
}

[dir="ltr"] .prev-next-btn--prev {
  margin-right: 10px;
}

[dir="rtl"] .prev-next-btn--prev {
  margin-left: 10px;
}

[dir="ltr"] .prev-next-btn--prev:hover:before {
  transform: translateX(-5px);
}

[dir="rtl"] .prev-next-btn--prev:hover:before {
  transform: translateX(5px);
}

.prev-next-btn--prev:before {
  content: "\f177";
}

[dir="ltr"] .prev-next-btn--prev:before {
  margin-right: calc(10px / 2);
}

[dir="rtl"] .prev-next-btn--prev:before {
  margin-left: calc(10px / 2);
}

.prev-next-btn--next {
  flex-direction: row-reverse;
}

[dir="ltr"] .prev-next-btn--next {
  margin-left: 10px;
}

[dir="rtl"] .prev-next-btn--next {
  margin-right: 10px;
}

[dir="ltr"] .prev-next-btn--next:hover:before {
  transform: translateX(5px);
}

[dir="rtl"] .prev-next-btn--next:hover:before {
  transform: translateX(-5px);
}

.prev-next-btn--next:before {
  content: "\f178";
}

[dir="ltr"] .prev-next-btn--next:before {
  margin-left: calc(10px / 2);
}

[dir="rtl"] .prev-next-btn--next:before {
  margin-right: calc(10px / 2);
}

.article-nav__title {
  color: rgba(33, 168, 181, 1);
}
@media (max-width: 768px) {
  .article-nav__title {
    display: none;
  }
}

.article-loader {
  display: none !important;
  color: rgba(33, 168, 181, 1);
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

[dir] .article-loader {
  margin: calc(10px * 3) auto;
}

[data-article-loading] .article-loader {
  display: block !important;
}

[data-article-loading] .article-footer {
  display: none !important;
}

.article__body {
  font-size: calc(14px * 1.125);
}

.article__body h2 {
  font-size: calc(14px * 1.625);
}

[dir] .article__body h2 {
  margin-top: calc(10px * 3);
}

.article__body .wysiwyg-font-size-x-large {
  font-size: calc(14px * 1.625);
}

[dir] .article__body .wysiwyg-font-size-x-large {
  margin-top: calc(10px * 3);
}

.article__body h3 {
  font-size: calc(14px * 1.375);
}

.article__body .wysiwyg-font-size-large {
  font-size: calc(14px * 1.375);
}

.article__body h4 {
  font-size: calc(14px * 1.25);
}

.article__body .wysiwyg-font-size-medium {
  font-size: calc(14px * 1.25);
}

.article__body h5 {
  font-size: calc(14px * 1.125);
}

.article__body h6 {
  font-size: calc(14px * 1.125);
}

.article__body .wysiwyg-font-size-small {
  font-size: calc(14px * 0.75);
}

[dir="ltr"] .article__body ul {
  padding-left: calc(10px * 2);
}

[dir="rtl"] .article__body ul {
  padding-right: calc(10px * 2);
}

[dir="ltr"] .article__body ol {
  padding-left: calc(10px * 2);
}

[dir="rtl"] .article__body ol {
  padding-right: calc(10px * 2);
}

[dir] .article__body ul ul {
  margin-top: 10px;
}

[dir] .article__body ul ol {
  margin-top: 10px;
}

[dir] .article__body ol ul {
  margin-top: 10px;
}

[dir] .article__body ol ol {
  margin-top: 10px;
}

[dir] .article__body ul li {
  margin-bottom: 10px;
}

[dir] .article__body ol li {
  margin-bottom: 10px;
}
/*Global text styles*/
[dir="ltr"] .text-left {
  text-align: left;
}

[dir="rtl"] .text-left {
  text-align: right;
}

[dir] .text-center {
  text-align: center;
}

[dir="ltr"] .text-right {
  text-align: right;
}

[dir="rtl"] .text-right {
  text-align: left;
}

[dir] .text-primary {
  background-color: #86e0e9;
}

[dir] .text-info {
  background-color: rgba(33, 168, 181, 1);
}

[dir] .text-warning {
  background-color: #ffd550;
}

[dir] .text-danger {
  background-color: #d9534f;
}

[dir] .text-success {
  background-color: #5cb85c;
}
/*Content elements*/
blockquote {
  font-style: italic;
}

[dir] blockquote {
  padding: calc(10px * 1.5) calc(10px * 2);
  margin: 0 0 calc(10px * 2);
  background-color: #fff;
}

[dir="ltr"] blockquote {
  border-left: 5px solid #b0bec4;
}

[dir="rtl"] blockquote {
  border-right: 5px solid #b0bec4;
}

[dir] blockquote.is-colored {
  border-color: rgba(33, 168, 181, 1);
}
/*Description Lists*/
dl {
  font-size: 15.75px;
}

[dir] dl {
  margin-top: 0;
  margin-bottom: calc(10px * 1.5);
}

dt {
  line-height: 1.4;
}

[dir] dt {
  margin-bottom: 10px;
}

dd {
  line-height: 1.4;
}

[dir] dd {
  margin-bottom: 10px;
}

dt {
  font-weight: bold;
}

[dir="ltr"] dd {
  margin-left: 0;
}

[dir="rtl"] dd {
  margin-right: 0;
}

.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  content: "";
}

[dir] .dl-horizontal:after {
  clear: both;
}

.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .dl-horizontal dt {
    width: 30%;
  }

  [dir] .dl-horizontal dt {
    clear: both;
  }

  [dir="ltr"] .dl-horizontal dt {
    float: left;
    padding-right: calc(10px * 1.5);
  }

  [dir="rtl"] .dl-horizontal dt {
    float: right;
    padding-left: calc(10px * 1.5);
  }
}
@media (min-width: 769px) {
  .dl-horizontal dd {
    width: 70%;
  }

  [dir="ltr"] .dl-horizontal dd {
    float: right;
  }

  [dir="rtl"] .dl-horizontal dd {
    float: left;
  }
}
/*Colored list*/
.list-colored,
.list-bullet {
  list-style-type: none;
  counter-reset: list;
}

[dir="ltr"] .list-colored,
[dir="ltr"] .list-bullet {
  padding-left: 0 !important;
}

[dir="rtl"] .list-colored,
[dir="rtl"] .list-bullet {
  padding-right: 0 !important;
}

.list-colored > ul,
.list-bullet > ul {
  list-style: none;
}

[dir] .list-colored > ul,
[dir] .list-bullet > ul {
  margin-bottom: 14px;
}

.list-colored > ol,
.list-bullet > ol {
  list-style-type: none;
  counter-reset: list;
}

[dir] .list-colored > ol,
[dir] .list-bullet > ol {
  margin-bottom: 14px;
}

.list-colored > li {
  position: relative;
  counter-increment: list;
}

[dir] .list-colored > li {
  margin-bottom: 18px !important;
}

[dir="ltr"] .list-colored > li {
  padding-left: 42px;
}

[dir="rtl"] .list-colored > li {
  padding-right: 42px;
}

.list-colored > li:before {
  position: absolute;
  top: -3px;
  z-index: 1;
  width: 30px;
  height: 30px;
  font-size: calc(14px * 0.75);
  line-height: 30px;
  color: #fff;
  content: counter(list);
}

[dir] .list-colored > li:before {
  text-align: center;
  background-color: rgba(33, 168, 181, 1);
  border-radius: 50%;
}

[dir="ltr"] .list-colored > li:before {
  left: 0;
}

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

.list-bullet > li {
  position: relative;
}

[dir] .list-bullet > li {
  margin-bottom: 10px;
}

[dir="ltr"] .list-bullet > li {
  padding-left: 30px;
}

[dir="rtl"] .list-bullet > li {
  padding-right: 30px;
}

.list-bullet > li:before {
  position: absolute;
  top: -2px;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: rgba(33, 168, 181, 1);
  content: "\f058";
}

[dir="ltr"] .list-bullet > li:before {
  left: 0;
}

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

[dir] .image-with-border {
  padding: 10px;
  border: 1px solid #eceff1;
  border-radius: 10px;
}

.image-with-shadow {
  display: block;
}

[dir] .image-with-shadow {
  box-shadow: 0 4px 15px 2px #90a4ae;
}

.image-overlay {
  position: relative;
}

.image-overlay:before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
}

[dir] .image-overlay:before {
  background-color: rgba(255, 255, 255, 0.3);
}

[dir="ltr"] .image-overlay:before {
  right: 0;
  left: 0;
}

[dir="rtl"] .image-overlay:before {
  right: 0;
  left: 0;
}

.image-with-video-icon {
  position: relative;
  display: block;
}

.image-with-video-icon img {
  display: block;
  width: 100%;
}

.image-with-video-icon:after {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 1.875em 3.125em;
  border-right-width: 0;
  border-left-color: #ffffff;
  transition: transform 0.2s;
  transform: translate(50%, -50%);
}

.image-with-video-icon:before {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  opacity: 0.5;
}

[dir] .image-with-video-icon:before {
  background-color: #617d8b;
}

[dir="ltr"] .image-with-video-icon:before {
  right: 0;
  left: 0;
}

[dir="rtl"] .image-with-video-icon:before {
  right: 0;
  left: 0;
}

.image-with-video-icon:hover:after {
  transform: translate(50%, -50%) scale(1.1);
}

.entry-info {
  display: flex;
}

.entry-info__avatar {
  flex-shrink: 0;
}

.entry-info__content .author {
  display: block;
  font-weight: 400;
}

[dir] .entry-info__content .author {
  margin-bottom: calc(10px / 4);
}

.entry-info__content .meta {
  font-size: calc(14px * 0.875);
  color: #90a4ae;
}

[dir] .my-activities-header {
  margin-bottom: calc(14px * 1.4);
}

.my-activities-items {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}

[dir] .my-activities-items {
  margin-bottom: calc(14px * 1.4 * 2);
}
@media (--screen-sm) {
  .my-activities-items {
    table-layout: auto;
  }
}

.my-activities-items__head {
  display: none;
  color: #90a4ae;
}
@media (--screen-sm) {
  .my-activities-items__head {
    display: table-header-group;
    font-size: calc(14px * 0.75);
    font-weight: 600;
    text-transform: uppercase;
  }
}
@media (--screen-sm) {
  .my-activities-items__body {
    display: table-row-group;
  }
}

.my-activities-items__row {
  display: block;
}
@media (--screen-sm) {
  .my-activities-items__row {
    display: table-row;
  }
}

.my-activities-items__col {
  display: block;
}
@media (--screen-sm) {
  .my-activities-items__col {
    display: table-cell;
  }

  [dir] .my-activities-items__col {
    padding-top: calc(14px * 1.4 / 2);
    padding-bottom: calc(14px * 1.4 / 2);
    border-bottom: 1px solid #eceeef;
  }

  [dir="ltr"] .my-activities-items__col + .my-activities-items__col {
    padding-left: 12px;
  }

  [dir="rtl"] .my-activities-items__col + .my-activities-items__col {
    padding-right: 12px;
  }
}
@media (max-width: 767px) {
  .my-activities-items__request-id {
    display: inline;
  }
}
@media (--screen-sm) {
  .my-activities-items__request-id {
    display: none;
  }
}
@media (max-width: 767px) {
  [dir] .my-activities-item {
    padding: calc(14px * 1.4 / 2) 12px;
    margin-bottom: calc(14px * 1.4);
    border: 1px solid #eceeef;
    border-radius: $border_radius_base;
  }
}

.my-activities-item__meta {
  font-size: 14px;
  color: #90a4ae;
}
@media (max-width: 767px) {
  .my-activities-item__meta {
    display: inline-block;
  }

  [dir="ltr"] .my-activities-item__meta {
    margin-right: calc(12px / 2);
  }

  [dir="rtl"] .my-activities-item__meta {
    margin-left: calc(12px / 2);
  }

  .my-activities-item__meta + .my-activities-item__meta:before {
    content: "\2022";
  }

  [dir="ltr"] .my-activities-item__meta + .my-activities-item__meta:before {
    margin-right: calc(12px / 2);
  }

  [dir="rtl"] .my-activities-item__meta + .my-activities-item__meta:before {
    margin-left: calc(12px / 2);
  }
}

.my-activities-item__title {
  font-weight: 400;
}
@media (max-width: 767px) {
  .my-activities-item__title {
    font-size: calc(14px * 1.375);
  }
}
@media (max-width: 767px) {
  .my-activities-item__icon {
    display: inline-block;
  }
}
@media (--screen-sm) {
  .my-activities-item__icon {
    display: none;
  }
}

.subscriptions-subscribe div {
  display: inline-block;
}

[dir] .my-activities-menu:not(.my-activities-menu--sub) {
  padding-bottom: calc(10px * 1.5);
  margin-bottom: 10px;
  border-bottom: 1px solid #eceff1;
}

[dir]
  .my-activities-menu:not(.my-activities-menu--sub)
  .my-activities-menu__item {
  padding: calc(10px / 1.5) calc(10px * 2) calc(10px / 1.2);
  border: 1px solid rgba(33, 168, 181, 1);
}
@media (max-width: 420px) {
  [dir]
    .my-activities-menu:not(.my-activities-menu--sub)
    .my-activities-menu__item {
    padding: calc(10px / 2) 10px;
    border: 0;
  }
}

[dir="ltr"]
  .my-activities-menu:not(.my-activities-menu--sub)
  .my-activities-menu__item:not(:first-child) {
  border-left: 0;
}

[dir="rtl"]
  .my-activities-menu:not(.my-activities-menu--sub)
  .my-activities-menu__item:not(:first-child) {
  border-right: 0;
}

.my-activities-menu:not(.my-activities-menu--sub) .is-active {
  color: #ffffff;
}

[dir] .my-activities-menu:not(.my-activities-menu--sub) .is-active {
  background-color: rgba(33, 168, 181, 1);
}

[dir] .my-activities-menu--sub {
  margin-bottom: calc(10px * 3);
}

.my-activities-menu--sub .my-activities-menu__item:not(:last-child):after {
  display: inline-block;
  width: 4px;
  height: 4px;
  vertical-align: middle;
  content: "";
}

[dir]
  .my-activities-menu--sub
  .my-activities-menu__item:not(:last-child):after {
  margin: 0 10px;
  background-color: #90a4ae;
  border-radius: 50%;
}

.my-activities-menu--sub .is-active {
  font-weight: 600;
}

.my-activities-menu__items {
  display: flex;
  flex-wrap: wrap;
}

[dir] .my-activities-menu__items {
  margin-bottom: 0;
}

.my-activities-items {
  color: #90a4ae;
}

[dir] .my-activities-items {
  margin-top: calc(10px * 3);
  margin-bottom: calc(10px * 5);
}

.my-activities-items .requests-link:hover {
  color: rgba(33, 168, 181, 1);
}

[dir="ltr"] .my-activities-items .requests-sort-symbol {
  margin-left: calc(10px * 2);
}

[dir="rtl"] .my-activities-items .requests-sort-symbol {
  margin-right: calc(10px * 2);
}
@media (min-width: 769px) {
  .my-activities-items {
    display: table;
    width: 100%;
  }

  .my-activities-items .my-activities-item__icon {
    display: none;
  }
}

.my-activities-items__head {
  display: none;
  color: #90a4ae;
}

.my-activities-items__head .my-activities-items__col {
  font-size: calc(14px * 0.875);
}

[dir] .my-activities-items__head .my-activities-items__col {
  padding: calc(10px * 1.5) 0;
}
@media (min-width: 769px) {
  .my-activities-items__head {
    display: table-header-group;
    font-weight: 800;
    text-transform: uppercase;
  }
}
@media (min-width: 769px) {
  .my-activities-items__body {
    display: table-row-group;
  }
}
@media (min-width: 769px) {
  .my-activities-items__row {
    display: table-row;
  }
}
@media (max-width: 768px) {
  [dir] .my-activities-items__row {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #b0bec4;
  }
}

.my-activities-items__col {
  line-height: 1.2;
}
@media (min-width: 769px) {
  .my-activities-items__col {
    display: table-cell;
  }

  [dir] .my-activities-items__col {
    padding: calc(10px * 1.2) 0;
    border-bottom: 1px solid #b0bec4;
  }

  [dir="ltr"] .my-activities-items__col + .my-activities-items__col {
    padding-left: calc(10px * 1.5);
  }

  [dir="rtl"] .my-activities-items__col + .my-activities-items__col {
    padding-right: calc(10px * 1.5);
  }
}
@media (max-width: 768px) {
  .my-activities-items__request-id {
    display: inline;
  }
}
@media (min-width: 769px) {
  .my-activities-items__request-id {
    display: none;
  }
}

.my-activities-item__title {
  color: rgba(33, 168, 181, 1);
}

.my-activities-item__title:hover {
  color: rgba(33, 168, 181, 1);
}
@media (max-width: 768px) {
  .my-activities-item__title {
    display: block;
    font-size: calc(10px * 2);
  }

  [dir] .my-activities-item__title {
    margin-bottom: calc(10px * 2);
  }

  .my-activities-item__meta {
    display: inline-block;
  }

  .my-activities-item__meta:after {
    content: "\2022";
  }

  [dir] .my-activities-item__meta:after {
    margin: 0 calc(10px / 2);
  }

  .my-activities-item__meta:last-of-type:after {
    display: none;
  }
}

[dir] .request-table-filters {
  padding: calc(10px * 1.2) 10px;
  margin: calc(10px * 2) 0 calc(10px * 3);
  background-color: #eceff1;
}

.request-table-filters input[type="search"] {
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .request-table-filters {
    display: flex;
    justify-content: space-between;
  }

  [dir] .request-table-filters {
    padding: 10px 10px 0;
  }
}

.request-table-filters a {
  display: block;
}

.request-table-filters .requests-search {
  width: 100%;
  height: 36px;
  line-height: 36px;
}

[dir] .request-table-filters .requests-search {
  padding: 0 10px;
  border: 1px solid #90a4ae;
}

.request-table-filters .request-filter-label {
  display: block;
  font-size: calc(14px * 0.875);
  text-transform: uppercase;
}

[dir] .request-table-filters .request-filter-label {
  padding-bottom: calc(10px * 0.7);
}

.request-table-filters .request-filter {
  width: 100%;
  height: 36px;
  line-height: 36px;
}

[dir] .request-table-filters .request-filter {
  padding: 0 10px;
  background-color: #ffffff;
  border: 1px solid #90a4ae;
  border-radius: 0;
}

.request-table-filters .request-filter-select {
  position: relative;
}

[dir] .request-table-filters .request-filter-select {
  background-color: #ffffff;
  border-radius: 10px;
}

.request-table-filters .request-filter-select select {
  position: relative;
  z-index: 1;
}

[dir] .request-table-filters .request-filter-select select {
  cursor: pointer;
  background-color: transparent;
  border-radius: 10px;
}

.request-table-filters .request-filter-select:after {
  position: absolute;
  top: 25%;
  line-height: 14px;
  color: #999;
  content: "\25BE";
}

[dir="ltr"] .request-table-filters .request-filter-select:after {
  right: 10px;
}

[dir="rtl"] .request-table-filters .request-filter-select:after {
  left: 10px;
}

[dir] .request-table-filters__item {
  margin-bottom: calc(10px * 1.5);
}
@media (min-width: 769px) {
  .request-table-filters__item {
    display: flex;
    width: 32%;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  [dir] .request-table-filters__item:last-child {
    margin-bottom: 0;
  }
}

.request-table-organization {
  display: flex;
}

.request-table-organization__col--main {
  width: 100%;
}

.request-table-organization__col--button a {
  height: 36px;
  line-height: 32px;
}

[dir] .request-table-organization__col--button a {
  padding: 0 10px;
}

[dir="ltr"] .request-table-organization__col--button a {
  margin-left: 10px;
}

[dir="rtl"] .request-table-organization__col--button a {
  margin-right: 10px;
}

.request-id {
  display: inline-block;
  font-size: calc(14px * 0.875);
  color: #ffffff;
}

[dir] .request-id {
  padding: 2px calc(10px / 2);
  margin-bottom: calc(10px / 2);
  background-color: rgba(33, 168, 181, 1);
}

[dir] .request-page .comment {
  padding-bottom: calc(10px / 2);
}

.request-page .comment__inner {
  min-height: auto;
}

[dir="ltr"] .request-page .comment__inner {
  padding-right: 0;
}

[dir="rtl"] .request-page .comment__inner {
  padding-left: 0;
}

[dir] .request-details {
  padding: calc(10px * 2);
  border: 1px solid #eceff1;
}

[dir] .request-details p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 420px) {
  [dir] .request-details dt {
    margin-bottom: 0;
  }
}
/*Comment List*/
[dir] .comments__header {
  padding-bottom: calc(10px * 2);
  margin-bottom: calc(10px * 2);
  border-bottom: 1px solid #eceff1;
}

[dir] .comment {
  padding-bottom: calc(10px * 2);
  margin-bottom: calc(10px * 2);
  border-bottom: 1px solid #eceff1;
}

.comment-sorter {
  display: flex;
  justify-content: space-between;
}

.comment__inner {
  position: relative;
  min-height: 110px;
}

[dir="ltr"] .comment__inner {
  padding-right: calc(10px * 4);
}

[dir="rtl"] .comment__inner {
  padding-left: calc(10px * 4);
}

[dir] .comment__header {
  margin-bottom: calc(10px * 2);
}

.comment__official-heading {
  display: inline-block;
  font-size: calc(14px * 0.875);
  line-height: 1.5;
  color: #ffffff;
}

[dir] .comment__official-heading {
  padding: 0 calc(10px / 2);
  margin-bottom: calc(10px / 2);
  background-color: #30cad9;
}

[dir] .comment__body {
  margin-bottom: 10px;
}

[dir] .comments__list {
  margin-bottom: calc(10px * 3);
}
/*Vote*/
.comment__voting-and-actions {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

[dir="ltr"] .comment__voting-and-actions {
  right: 0;
}

[dir="rtl"] .comment__voting-and-actions {
  left: 0;
}

.vote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vote-sum {
  line-height: 2;
}

.vote-control,
.comment__actions {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

[dir] .vote-control,
[dir] .comment__actions {
  padding: 0;
}

.comment__actions .dropdown-toggle:after {
  content: "\f013";
}

[dir="ltr"] .comment__actions .dropdown-toggle:after {
  margin-left: 0;
}

[dir="rtl"] .comment__actions .dropdown-toggle:after {
  margin-right: 0;
}

[dir] .comment__actions button {
  background-color: transparent !important;
  border: none !important;
}
/*Comment form*/
.comments__callout {
  font-size: 14px;
}

[dir] .comments__callout {
  margin: calc(10px * 2) 0;
}

.comment-form {
  position: relative;
}

[dir] .comment-form {
  margin: calc(10px * 3) 0;
}

[dir="ltr"] .comment-form {
  padding-left: 60px;
}

[dir="rtl"] .comment-form {
  padding-right: 60px;
}
@media (max-width: 768px) {
  [dir="ltr"] .comment-form {
    padding-left: 0;
  }

  [dir="rtl"] .comment-form {
    padding-right: 0;
  }
}

[dir] .comment-form__controls {
  margin-bottom: calc(10px * 2);
}

.comment-form__avatar {
  position: absolute;
  top: 0;
}

[dir="ltr"] .comment-form__avatar {
  left: 0;
}

[dir="rtl"] .comment-form__avatar {
  right: 0;
}
@media (max-width: 768px) {
  .comment-form__avatar {
    display: none;
  }
}

[dir] .comment-form__body {
  margin-bottom: calc(10px * 2);
}

[dir] .comment-form__mark-as-solved {
  padding: calc(10px * 1.5) 0;
}

[dir] .comment-form__ccs {
  margin-bottom: 0;
}

[dir] .comment-form__ccs + textarea {
  margin-top: 0;
}

[dir="ltr"] .comment-form__ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

[dir="rtl"] .comment-form__ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

[dir] .comment-form__ccs ul[data-hc-pills-container] {
  margin: 0 0 calc(1px * -1);
  border: 1px solid #eceff1;
  border-radius: 10px 10px 0 0;
}

.comment-form__ccs ul[data-hc-pills-container][data-hc-focus="true"] {
  position: relative;
  z-index: 2;
}

[dir] .comment-form__ccs ul[data-hc-pills-container][data-hc-focus="true"] {
  border-color: #9ed5e7;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.meta__item {
  display: flex;
  font-size: calc(14px * 0.875);
  color: #90a4ae;
  align-items: center;
}

.meta__item:after {
  display: inline-block;
  width: 4px;
  height: 4px;
  content: "";
}

[dir] .meta__item:after {
  margin: 0 10px;
  background-color: #b0bec4;
  border-radius: 50%;
}

.meta__item:last-of-type:after {
  display: none;
}

[dir] .search-results-count {
  margin-bottom: calc(10px * 3);
}
@media (max-width: 768px) {
  .search-results-count {
    font-size: calc(14px * 1.375);
  }
}

.search-results {
  display: flex;
  flex-wrap: wrap;
}

[dir] .search-results {
  margin-bottom: calc(10px * 3);
}

[dir="ltr"] .search-results {
  margin-right: -var(--spacer);
}

[dir="rtl"] .search-results {
  margin-left: -var(--spacer);
}

.search-results__column {
  width: 100%;
}

[dir] .search-results__column {
  padding: 0 10px;
}

[dir] .search-result {
  padding: calc(10px * 2);
  margin-bottom: calc(10px * 2);
  border: 1px solid #eceff1;
  border-radius: 10px;
}

.search-result-votes {
  font-size: calc(14px * 0.875);
  color: rgba(33, 168, 181, 1);
}

[dir] .search-result-votes {
  padding: calc(10px / 3);
  border: 1px solid #eceff1;
  border-radius: 3px;
}

[dir="ltr"] .search-result-votes {
  margin-left: calc(10px / 2);
}

[dir="rtl"] .search-result-votes {
  margin-right: calc(10px / 2);
}

.searchbox ul {
  list-style: none;
}

[dir] .searchbox ul {
  margin: 10px 0 calc(10px * 2);
}

[dir="ltr"] .searchbox ul {
  padding-left: 0;
}

[dir="rtl"] .searchbox ul {
  padding-right: 0;
}

[dir] .searchbox li {
  margin-bottom: calc(10px / 2);
}
/* ==========================================================================
  Search Results Filters
   ========================================================================== */
.search-results-filters {
  display: flex;
  width: 100%;
  font-size: calc(14px - 2px);
  flex-wrap: wrap;
}

[dir] .search-results-filters {
  padding: 16px;
  margin-bottom: calc(10px * 3);
  border: 1px solid #eceeef;
  border-radius: 10px;
}

.search-results-filter {
  width: 50%;
}

[dir="ltr"] .search-results-filter {
  padding-right: 20px;
}

[dir="rtl"] .search-results-filter {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .search-results-filter {
    width: 100%;
  }
}
@media (max-width: 767px) {
  [dir] .search-results-filter + .search-results-filter {
    margin-top: 24px;
  }
}

.search-results-filter__title {
  font-weight: 500;
}

[dir] .search-results-filter__title {
  margin-bottom: 0;
}

[dir="ltr"] .search-results-filter__title {
  margin-left: 8px;
}

[dir="rtl"] .search-results-filter__title {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .search-results-filter__title {
    position: relative;
    font-size: calc(14px * 1.125);
  }

  [dir] .search-results-filter__title {
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .search-results-filter__title:after {
    position: absolute;
    top: 50%;
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    line-height: 1.5;
    color: inherit;
    content: "\f107";
    transition: all 0.3s ease;
  }

  [dir] .search-results-filter__title:after {
    transform: translateY(-50%);
  }

  [dir="ltr"] .search-results-filter__title:after {
    right: 0;
    margin-left: 5px;
  }

  [dir="rtl"] .search-results-filter__title:after {
    left: 0;
    margin-right: 5px;
  }

  [dir="ltr"] .search-results-filter__title.is-active:after {
    transform: translateY(-50%) rotate(-180deg);
  }

  [dir="rtl"] .search-results-filter__title.is-active:after {
    transform: translateY(-50%) rotate(180deg);
  }
}

[dir] .search-results-filter__list {
  margin-top: 24px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .search-results-filter__list {
    display: none;
  }
}
@media (--screen-sm) {
  .search-results-filter__list {
    display: block !important;
  }
}

.search-results-filter__item {
  display: block;
}

[dir] .search-results-filter__item {
  margin-bottom: 4px;
}

.search-results-filter__item.is-active .search-results-filter__link {
  color: #fff;
}

[dir] .search-results-filter__item.is-active .search-results-filter__link {
  background-color: rgba(33, 168, 181, 1);
  border-color: rgba(33, 168, 181, 1);
}

.search-results-filter__item--subfilter:nth-child(n + 7) {
  display: none;
}

.search-result__subfilters--all .search-results-filter__item:nth-child(n + 7) {
  display: block;
}

.search-result__subfilters--all .search-result__show-more {
  display: none !important;
}

.search-results-filter__link {
  display: block;
  color: #37474f;
  text-decoration: none;
  transition: all 0.3s ease;
}

[dir] .search-results-filter__link {
  padding: 6px 8px;
  border: $border_width solid transparent;
  border-radius: 10px;
}

[dir] .search-results-filter__link:hover {
  background-color: #eceff1;
  border-color: #eceff1;
}

[dir] .search-results-filter__link:focus {
  background-color: #eceff1;
  border-color: #eceff1;
}

[dir] .search-results-filter__link:active {
  background-color: #eceff1;
  border-color: #eceff1;
}

.search-results-filter__link:active {
  outline: none;
}

[dir] .search-results-filter__link:active {
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.search-results-filter__count {
  opacity: 0.6;
}

.search-result__show-more {
  color: $button_color;
}

[dir] .search-result__show-more {
  padding: 0;
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .search-result__show-more {
  margin-left: 8px;
}

[dir="rtl"] .search-result__show-more {
  margin-right: 8px;
}

[dir] .error-page {
  padding: calc(10px * 5) 0 calc(10px * 7);
  text-align: center;
}

.error-page h2 {
  font-size: calc(14px * 2);
}

[dir] .error-page h2 {
  margin-bottom: calc(10px / 2);
}

.error-page p {
  color: #90a4ae;
}

[dir] .error-page p {
  margin: 0 0 10px;
}

.error-page a {
  color: rgba(33, 168, 181, 1);
}

.error-page a:hover {
  text-decoration: none;
}

.error-page__title {
  font-size: 80px;
  font-weight: 800;
  color: rgba(33, 168, 181, 1);
  letter-spacing: 4px;
}

[dir] .error-page__title {
  margin-bottom: calc(10px / 2);
}

.error-page__link {
  display: block;
}

[dir] .error-page__link {
  margin-top: calc(10px * 3);
}

.error-page__link:hover {
  color: #37474f;
}

.error-page__link:before {
  display: inline-block;
  content: "<";
  transition: transform 0.2s ease-in;
}

[dir="ltr"] .error-page__link:before {
  padding-right: 2px;
}

[dir="rtl"] .error-page__link:before {
  padding-left: 2px;
}

[dir="ltr"] .error-page__link:hover:before {
  transform: translateX(-3px);
}

[dir="rtl"] .error-page__link:hover:before {
  transform: translateX(3px);
}

.pagination-list {
  list-style: none;
}

[dir="ltr"] .pagination-list {
  padding-left: 0;
  margin-left: 0;
}

[dir="rtl"] .pagination-list {
  padding-right: 0;
  margin-right: 0;
}

.pagination-next,
.pagination-prev,
.pagination-first,
.pagination-last {
  display: inline-block;
}

[dir="ltr"] .pagination-next-text {
  margin-right: 16px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 16px;
}

[dir="rtl"] .pagination-next-text {
  margin-left: 16px;
}

[dir="ltr"] .pagination-prev-text {
  margin-left: 16px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 16px;
}

[dir="rtl"] .pagination-prev-text {
  margin-right: 16px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[dir] .footer {
  padding: calc(10px * 2) 0;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column-reverse;
    justify-content: center;
  }

  [dir] .footer {
    text-align: center;
  }
}

.footer a {
  color: #90a4ae;
}

.footer a:hover {
  color: rgba(33, 168, 181, 1);
}

[dir] .footer-menu {
  margin-bottom: 10px;
}

.footer-menu ul {
  display: flex;
  line-height: 1.2;
}

[dir] .footer-menu ul {
  margin: 0;
  text-align: center;
}

[dir] .footer-menu li {
  padding: 0 calc(10px * 1.8);
}

.footer-socials {
  display: flex;
}

[dir] .footer-socials {
  margin: 0 0 10px;
}

[dir="ltr"] .footer-socials li {
  padding: 0 0 0 calc(10px * 1.5);
}

[dir="rtl"] .footer-socials li {
  padding: 0 calc(10px * 1.5) 0 0;
}
@media (max-width: 768px) {
  [dir] .footer-socials li {
    padding: 0 calc(10px * 1.5);
  }
}

.footer-socials a {
  font-size: calc(14px * 1.25);
}

.copyright {
  display: flex;
  flex-shrink: 0;
}

[dir] .copyright {
  margin-bottom: 10px;
}

.copyright__logo {
  height: calc(10px * 4);
}

[dir="ltr"] .copyright__logo {
  margin-right: 10px;
}

[dir="rtl"] .copyright__logo {
  margin-left: 10px;
}

.copyright__content span {
  display: block;
}

.copyright__content a {
  color: inherit;
}

.copyright__content a:hover {
  color: rgba(33, 168, 181, 1);
}

.copyright__info {
  font-size: calc(14px * 0.875);
  white-space: nowrap;
}

[dir] .copyright__info {
  margin-bottom: calc(10px / 3);
}

.copyright__copy {
  font-size: calc(14px * 0.75);
}

.dropdown-toggle {
  min-width: unset;
}

.dropdown-toggle:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: inherit;
  vertical-align: baseline;
  content: "\f107";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .dropdown-toggle:after {
  margin-left: calc(10px / 2);
}

[dir="rtl"] .dropdown-toggle:after {
  margin-right: calc(10px / 2);
}

.dropdown-menu {
  min-width: 170px;
  overflow: hidden;
}

[dir] .dropdown-menu {
  padding: 0;
  margin-top: 10px;
}
@media (max-width: 768px) {
  [dir] .dropdown-menu {
    margin-top: 0;
  }
}

.dropdown-menu [role="menuitem"] {
  position: relative;
  font-size: calc(14px * 0.875);
  color: #37474f;
  text-decoration: none;
  white-space: normal;
}

[dir] .dropdown-menu [role="menuitem"] {
  padding: 10px calc(10px * 1.5);
}

.dropdown-menu [role="menuitem"]:hover {
  color: #37474f;
}

[dir] .dropdown-menu [role="menuitem"]:hover {
  background-color: #eceff1;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  position: absolute;
  top: 11px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  content: "\f00c";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  right: 12px;
  margin-left: 10px !important;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  left: 12px;
  margin-right: 10px !important;
}
@media (max-width: 768px) {
  #user {
    display: block;
  }

  [dir] #user {
    padding: calc(10px / 2) 0;
  }

  #user #user-dropdown:after,
  #user #user-dropdown:before {
    display: none !important;
  }
}

#user .dropdown-toggle:hover {
  color: rgba(33, 168, 181, 1);
}

[dir] #user #user-dropdown {
  margin-top: 10px;
}
@media (max-width: 768px) {
  #user #user-name {
    display: none;
  }
}

.user-info .btn.with-image {
  display: flex;
  align-items: center;
}

[dir] .user-info .btn.with-image {
  padding: 0;
  background-color: transparent;
}

.user-info .btn.with-image span {
  vertical-align: middle;
}

[dir="ltr"] .user-info .btn.with-image span {
  padding-left: calc(10px / 2);
}

[dir="rtl"] .user-info .btn.with-image span {
  padding-right: calc(10px / 2);
}

.user-avatar {
  width: 42px;
  height: 42px;
}

[dir] .user-avatar {
  border-radius: 50%;
}

.avatar {
  position: relative;
}

[dir="ltr"] .avatar {
  margin-right: calc(10px * 1.2);
}

[dir="rtl"] .avatar {
  margin-left: calc(10px * 1.2);
}

.avatar--agent:before {
  position: absolute;
  bottom: -4px;
  display: flex;
  width: 18px;
  height: 18px;
  font-family: "Font Awesome 5 Free";
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  content: "\f007";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  align-items: center;
  justify-content: center;
}

[dir] .avatar--agent:before {
  background-color: rgba(33, 168, 181, 1);
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 100%;
}

[dir="ltr"] .avatar--agent:before {
  right: -4px;
}

[dir="rtl"] .avatar--agent:before {
  left: -4px;
}

.language-selector {
  display: flex;
  color: #90a4ae;
  align-items: center;
}

[dir] .language-selector {
  margin-bottom: calc(10px * 2);
}

.language-selector:hover,
.language-selector:active,
.language-selector:focus {
  color: #016899;
}

.language-selector .dropdown-menu {
  bottom: 0;
}

[dir] .language-selector .dropdown-menu {
  transform: translateY(100%);
}

.language-selector .dropdown-toggle {
  color: currentColor;
}

[dir] .language-selector .dropdown-toggle {
  padding: 0;
  border: none;
}

.language-selector .dropdown-toggle:hover,
.language-selector .dropdown-toggle:active,
.language-selector .dropdown-toggle:focus {
  color: currentColor;
}

[dir] .language-selector .dropdown-toggle:hover,
[dir] .language-selector .dropdown-toggle:active,
[dir] .language-selector .dropdown-toggle:focus {
  background-color: transparent;
}

.language-selector .dropdown-toggle:after {
  color: currentColor;
  transition: none;
}
@media (max-width: 768px) {
  #topbar .dropdown-menu {
    position: static;
  }

  [dir] #topbar .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  [dir] #topbar .dropdown-menu [role="menuitem"] {
    padding: calc(10px / 2) 0 !important;
  }

  [dir] #topbar .dropdown-menu [role="menuitem"]:hover {
    background-color: transparent;
  }
}

.user-avatar--topbar {
  width: 32px;
  height: 32px;
}

[dir="ltr"] .user-avatar--topbar {
  margin-right: 8px;
}

[dir="rtl"] .user-avatar--topbar {
  margin-left: 8px;
}

.share {
  display: flex;
  white-space: nowrap;
  list-style: none;
  flex-wrap: wrap;
}

[dir] .share {
  margin: 0;
}

[dir="ltr"] .share {
  padding-left: 0;
}

[dir="rtl"] .share {
  padding-right: 0;
}

.share li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

[dir] .share li {
  margin-bottom: calc(10px / 2);
}

[dir="ltr"] .share li {
  margin-right: calc(10px * 0.8);
}

[dir="rtl"] .share li {
  margin-left: calc(10px * 0.8);
}

.share a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  touch-action: manipulation;
}

[dir] .share a {
  background-color: #eceff1;
  border-radius: 50%;
}

[dir] .share a:hover {
  background-color: #cfd6db;
}

.share a:before {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir] .share a:before {
  text-align: center;
}

.share-facebook {
  color: #3d5b95;
}

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

.share-twitter {
  color: #24aadd;
}

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

.share-linkedin {
  color: #0976b4;
}

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

.share-googleplus {
  color: #d23e30;
}

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

[dir] .profile-header {
  padding: calc(10px * 1.5) 0;
  text-align: center;
}

.profile-header__name {
  font-size: calc(14px * 2);
  line-height: 1;
}

[dir] .profile-header__name {
  margin-bottom: calc(10px * 1.5);
}

[dir] .profile-header__avatar {
  margin-bottom: 10px;
  text-align: center;
}

.profile-header__avatar .avatar {
  display: inline-block;
  width: 70px;
  height: 70px;
}

[dir="ltr"] .profile-header__avatar .avatar {
  margin-right: 0;
}

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

.profile-header__avatar img {
  width: 100%;
  height: 100%;
}

.profile-header__description {
  color: #90a4ae;
}

.profile-header__private-badge {
  display: inline-block;
}

[dir] .profile-header__private-badge {
  margin-bottom: calc(10px * 1.5);
  background-color: rgba(33, 168, 181, 1);
}

.profile-stats {
  justify-content: center;
}

[dir] .profile-stats {
  margin: 0 0 calc(10px * 0.7);
}

[dir="ltr"] .profile-stats__value {
  padding-left: calc(10px / 2);
}

[dir="rtl"] .profile-stats__value {
  padding-right: calc(10px / 2);
}

[dir] .profile-header__options {
  margin-top: calc(10px * 1.5);
}

[dir] .profile-nav {
  margin: calc(10px * 1.5) 0 calc(10px * 2.5);
  text-align: center;
}

.profile-nav__items {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}

[dir] .profile-nav__items {
  margin: 0;
}

.profile-nav__item {
  font-size: calc(14px * 0.875);
  line-height: 1.3;
}

[dir] .profile-nav__item {
  padding: 8px 12px;
  border: 1px solid rgba(33, 168, 181, 1);
}

[dir="ltr"] .profile-nav__item {
  border-right: 0;
}

[dir="rtl"] .profile-nav__item {
  border-left: 0;
}

[dir="ltr"] .profile-nav__item:last-of-type {
  border-right: 1px solid rgba(33, 168, 181, 1);
}

[dir="rtl"] .profile-nav__item:last-of-type {
  border-left: 1px solid rgba(33, 168, 181, 1);
}
@media (max-width: 768px) {
  [dir] .profile-nav__item {
    padding: calc(10px * 0.6) 10px;
    border: 0 !important;
  }
}

.profile-nav__item.is-active {
  color: #ffffff;
}

[dir] .profile-nav__item.is-active {
  background-color: rgba(33, 168, 181, 1);
}

.profile-nav__item a {
  color: rgba(33, 168, 181, 1);
}

[dir] .profile-section {
  margin-top: calc(10px * 5);
}

[dir] .profile-section__header {
  margin-bottom: calc(10px * 3);
}

.profile-section__title {
  font-size: calc(14px * 2);
}

.profile-section-sorter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[dir] .profile-activity-list {
  margin: 0 0 calc(10px * 5);
}

[dir] .profile-activity {
  padding-bottom: calc(10px / 2);
  margin-bottom: calc(10px * 2);
  border-bottom: 1px solid #eceff1;
}

[dir] .profile-activity__header {
  margin-bottom: 10px;
}

[dir] .profile-contribution .meta {
  margin-top: calc(10px * 1.5);
}

.profile-contribution .meta .comment-link:hover {
  color: rgba(33, 168, 181, 1);
}

.profile-contribution__title {
  font-size: calc(14px * 1.625);
  color: rgba(33, 168, 181, 1);
}

[dir] .profile-contribution__title {
  margin-bottom: 0;
}

.profile-contribution__title a {
  text-decoration: none;
}

.profile-contribution__title a:hover {
  color: #37474f;
}

.profile-contribution__breadcrumbs {
  display: flex;
}

[dir] .profile-contribution__breadcrumbs {
  padding: 10px 0;
  margin-bottom: 0;
}

.status-label {
  font-size: calc(14px * 0.875);
  color: #ffffff;
}

[dir] .status-label {
  padding: 2px calc(10px / 2);
}

[dir] .status-label--pending {
  background-color: #ffd550;
}

[dir] .status-label--with-ticket {
  background-color: rgba(33, 168, 181, 1);
}

.status-label--with-ticket:hover {
  color: #ffffff;
}

.status-label--with-ticket:focus {
  color: #ffffff;
}

.status-label--with-ticket:active {
  color: #ffffff;
}

[dir] .status-label--solved,
[dir] .status-label--closed {
  background-color: #5cb85c;
}

[dir] .status-label--new,
[dir] .status-label--open {
  background-color: #d9534f;
}

[dir] .status-label--answered {
  background-color: #ffd550;
}

[dir] .status-label--official {
  background-color: rgba(33, 168, 181, 1);
}

[dir] .status-label--completed,
[dir] .status-label--answered {
  background-color: #5cb85c;
}

[dir] .status-label--planned {
  background-color: #8d6e63;
}

.status-label--not-planned {
  color: #37474f;
}

[dir] .status-label--not-planned {
  background-color: #eceff1;
}

.scroll-to-top.fa {
  position: fixed;
  bottom: -calc(10px * 5);
  z-index: 3;
  display: flex;
  width: calc(10px * 5);
  height: calc(10px * 5);
  font-size: calc(14px * 2);
  color: rgba(33, 168, 181, 1);
  text-decoration: none;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  align-items: center;
  justify-content: center;
}

[dir] .scroll-to-top.fa {
  border: 1px solid rgba(33, 168, 181, 1);
  border-radius: 10px;
}

[dir="ltr"] .scroll-to-top.fa {
  left: calc(10px * 2);
}

[dir="rtl"] .scroll-to-top.fa {
  right: calc(10px * 2);
}

.scroll-to-top.fa:focus,
.scroll-to-top.fa:active {
  outline: 0;
}

.scroll-to-top.fa.is-active {
  bottom: calc(10px * 2);
}
@media (max-width: 1024px) {
  .scroll-to-top.fa {
    display: none;
  }
}
/*Embeds responsive*/
.embed,
.embed-responsive {
  position: relative;
  z-index: 1;
  display: block;
  height: 0;
  overflow: hidden;
}

[dir] .embed,
[dir] .embed-responsive {
  padding: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
}

.embed img,
.embed-responsive img {
  width: 100%;
}

.embed iframe,
.embed embed,
.embed object,
.embed video,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

[dir] .embed iframe,
[dir] .embed embed,
[dir] .embed object,
[dir] .embed video,
[dir] .embed-responsive iframe,
[dir] .embed-responsive embed,
[dir] .embed-responsive object,
[dir] .embed-responsive video {
  border: 0;
}

[dir="ltr"] .embed iframe,
[dir="ltr"] .embed embed,
[dir="ltr"] .embed object,
[dir="ltr"] .embed video,
[dir="ltr"] .embed-responsive iframe,
[dir="ltr"] .embed-responsive embed,
[dir="ltr"] .embed-responsive object,
[dir="ltr"] .embed-responsive video {
  left: 0;
}

[dir="rtl"] .embed iframe,
[dir="rtl"] .embed embed,
[dir="rtl"] .embed object,
[dir="rtl"] .embed video,
[dir="rtl"] .embed-responsive iframe,
[dir="rtl"] .embed-responsive embed,
[dir="rtl"] .embed-responsive object,
[dir="rtl"] .embed-responsive video {
  right: 0;
}

.embed:focus,
.embed-responsive:focus {
  outline: none !important;
}
/*Modifier class for 16:9 aspect ratio*/
[dir] .embed-responsive--16by9 {
  padding-bottom: 56.25%;
}
/*Modifier class for 4:3 aspect ratio*/
[dir] .embed-responsive--4by3 {
  padding-bottom: 75%;
}

.language-selector {
  display: inline-block;
  vertical-align: middle;
}

.dropdown a[data-url]:before {
  display: none;
  width: 20px;
  height: 20px;
  vertical-align: text-top;
  content: "";
}

[dir] .dropdown a[data-url]:before {
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-size: auto;
}

[dir="ltr"] .dropdown a[data-url]:before {
  margin-right: 16px;
  margin-left: 4px;
}

[dir="rtl"] .dropdown a[data-url]:before {
  margin-right: 4px;
  margin-left: 16px;
}

.dropdown-toggle.btn {
  font-size: 14px;
}

.language-selector--flags.dropdown a[data-url]:before {
  display: inline-block;
}

[dir] .dropdown a[data-url]:before {
  background-image: url("/hc/theming_assets/01HZPC74PW0XH6626JVQC3AZV1");
}

[dir] .dropdown a[data-url*="/hc/change_language/af"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/af-za"]:before {
  background-position: -1px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/am"]:before {
  background-position: -22px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/ar"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ar-ae"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ar-ps"]:before {
  background-position: -1px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/az"]:before {
  background-position: -22px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/be"]:before {
  background-position: -44px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/bg-bg"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/bg"]:before {
  background-position: -44px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/bn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/bn-in"]:before {
  background-position: -1px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/bo"]:before {
  background-position: -22px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/bs"]:before {
  background-position: -44px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/cs"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/cs-cz"]:before {
  background-position: -66px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/cy"]:before {
  background-position: -66px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/da"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/da-dk"]:before {
  background-position: -66px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/de"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-at"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-be"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-ch"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-dk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-it"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-lu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/de-ro"]:before {
  background-position: -1px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/el"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/el-gr"]:before {
  background-position: -22px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/et"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/et-ee"]:before {
  background-position: -44px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/eu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/eu-es"]:before {
  background-position: -66px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/fa"]:before {
  background-position: -88px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/fi"]:before {
  background-position: -88px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/fil"]:before {
  background-position: -88px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/fo"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fo-dk"]:before {
  background-position: -88px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/fr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-002"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-be"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-ca"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-ch"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-fr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-it"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/fr-lu"]:before {
  background-position: -1px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ga"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ga-ie"]:before {
  background-position: -22px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/he"]:before {
  background-position: -44px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/hr"]:before {
  background-position: -66px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/hu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/hu-hu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/hu-ro"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/hu-sk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/hu-ua"]:before {
  background-position: -88px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/hy"]:before {
  background-position: -110px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/id"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/id-id"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/jv-id"]:before {
  background-position: -110px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/as-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/gu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/gu-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/hi"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/hi-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/kn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/kn-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ks-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/or-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/pa-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/sa-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/sd-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ta"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ta-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/te"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/te-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ur"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ur-in"]:before {
  background-position: -110px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/is"]:before {
  background-position: -110px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/it"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/it-ch"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/it-it"]:before {
  background-position: -110px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ja"]:before {
  background-position: -1px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ka"]:before {
  background-position: -22px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/kk"]:before {
  background-position: -44px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/kl"]:before {
  background-position: -66px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/km"]:before {
  background-position: -88px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ko"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ko-kr"]:before {
  background-position: -110px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ky"]:before {
  background-position: -132px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/lt"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/lt-lv"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/lt-lt"]:before {
  background-position: -132px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/lv"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/lv-lv"]:before {
  background-position: -132px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/mk"]:before {
  background-position: -132px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/mn"]:before {
  background-position: -132px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ms"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ms-my"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ml"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ml-in"]:before {
  background-position: -132px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/mt"]:before {
  background-position: -1px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/my"]:before {
  background-position: -22px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ne"]:before {
  background-position: -44px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/nl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nl-id"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nl-nl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nl-be"]:before {
  background-position: -66px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/no"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nb"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nb-no"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/nn-no"]:before {
  background-position: -88px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/mi-nz"]:before {
  background-position: -110px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/pl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/pl-cz"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/pl-lt"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/pl-pl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/pl-ua"]:before {
  background-position: -132px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/apc-ps"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ajp-ps"]:before {
  background-position: -154px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/ps"]:before {
  background-position: -154px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/pt-br"]:before {
  background-position: -154px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/pt"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/pt-bt"]:before {
  background-position: -154px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ro"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ro-bg"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ro-sk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ro-ua"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ro-ro"]:before {
  background-position: -154px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ru"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ru-ee"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ru-kz"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ru-lt"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ru-lv"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ru-ua"]:before {
  background-position: -154px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/si"]:before {
  background-position: -154px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/sl"]:before {
  background-position: -1px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/so"]:before {
  background-position: -22px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/ca"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ca-es"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/gl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/gl-es"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-419"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-ar"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-cl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-co"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-es"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-hn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-mx"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-pe"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-pr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-us"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/es-ve"]:before {
  background-position: -44px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/sq"]:before {
  background-position: -66px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/sr-me"]:before {
  background-position: -88px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/sr"]:before {
  background-position: -110px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/sv"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/sv-se"]:before {
  background-position: -132px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/sw"]:before {
  background-position: -154px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/tg"]:before {
  background-position: -176px 0;
}

[dir] .dropdown a[data-url*="/hc/change_language/th"]:before {
  background-position: -176px -22px;
}

[dir] .dropdown a[data-url*="/hc/change_language/tk"]:before {
  background-position: -176px -44px;
}

[dir] .dropdown a[data-url*="/hc/change_language/tl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/tl-ph"]:before {
  background-position: -176px -66px;
}

[dir] .dropdown a[data-url*="/hc/change_language/tr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/tr-bg"]:before {
  background-position: -176px -88px;
}

[dir] .dropdown a[data-url*="/hc/change_language/uk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/uk-sk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/uk-ua"]:before {
  background-position: -176px -110px;
}

[dir] .dropdown a[data-url*="/hc/change_language/en-us"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-001"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ae"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-150"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-at"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-au"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-be"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-bg"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-bo"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ca"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ch"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-co"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-cr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-cy"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-cz"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-dk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ec"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ee"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-es"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-gb"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-gr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-gu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-hk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-hn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-hu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-id"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ie"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-il"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-in"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-it"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-kr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-lr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-lt"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-lu"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-lv"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-mx"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-my"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-nl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-no"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-nz"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-pe"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ph"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-pl"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-pr"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ps"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-pt"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ro"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-se"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-sg"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-sk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-th"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-ua"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-vn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/en-za"]:before {
  background-position: -176px -132px;
}

[dir] .dropdown a[data-url*="/hc/change_language/uz"]:before {
  background-position: -176px -154px;
}

[dir] .dropdown a[data-url*="/hc/change_language/vi"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/vi-vn"]:before {
  background-position: -1px -176px;
}

[dir] .dropdown a[data-url*="/hc/change_language/nso-za"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/st-za"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/tz-za"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/ts-za"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/xh"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/xh-za"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/zu-za"]:before {
  background-position: -22px -176px;
}

[dir] .dropdown a[data-url*="/hc/change_language/zh"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/zh-hk"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/zh-mo"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/zh-sg"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/zh-cn"]:before,
[dir] .dropdown a[data-url*="/hc/change_language/zh-tw"]:before {
  background-position: -44px -176px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [dir] .dropdown a[data-url]:before {
    background-image: url("/hc/theming_assets/01HZPC73EEQYAPAJS4P4F18R2P");
    background-size: 198px 198px;
  }
}

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

.dropdown-toggle {
  display: inline-block;
  vertical-align: middle;
  outline: none;
}

[dir] .dropdown-toggle {
  text-align: initial;
  cursor: pointer;
  background: transparent;
}

.dropdown-toggle:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: calc(14px - 4px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: inherit;
  content: "\f107";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .dropdown-toggle:after {
  margin-left: 8px;
}

[dir="rtl"] .dropdown-toggle:after {
  margin-right: 8px;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 170px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}

[dir] .dropdown-menu {
  padding: 10px 0;
  margin-top: 1px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: $border_radius_base;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

[dir="ltr"] .dropdown-menu {
  left: 0;
  text-align: left;
}

[dir="rtl"] .dropdown-menu {
  right: 0;
  text-align: right;
}

[dir="rtl"] .dropdown-menu {
  text-align: right;
}

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  display: block;
  font-size: 11px;
  font-weight: normal;
  color: #969696;
}

[dir] .dropdown-menu [role="separator"] {
  padding: 5px 0;
  margin: 5px 20px 10px;
  border-bottom: 1px solid #d8d8d8;
}

.dropdown-menu [role="menuitem"] {
  display: block;
  width: 100%;
  line-height: inherit;
  color: #333;
  white-space: nowrap;
  -webkit-appearance: none;
}

[dir] .dropdown-menu [role="menuitem"] {
  text-align: start;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

[dir="ltr"] .dropdown-menu [role="menuitem"] {
  padding: 7px 40px 7px 20px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover,
.dropdown-menu [role="menuitem"]:focus {
  color: #333;
  text-decoration: none;
}

[dir] .dropdown-menu [role="menuitem"]:hover,
[dir] .dropdown-menu [role="menuitem"]:focus {
  background: #f3f3f3;
}

[dir] .dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  display: inline-block;
  width: 12px;
  height: 12px;
  content: "";
}

[dir] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
}

[dir="ltr"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  margin-left: 10px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  margin-right: 10px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]:after {
  float: left;
  margin-right: 10px;
  margin-left: 0;
}

.dropdown-menu [role="menuitem"][hidden],
.dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

[dir="ltr"] .dropdown-menu-end {
  right: 0;
  left: auto;
}

[dir="rtl"] .dropdown-menu-end {
  right: auto;
  left: 0;
}

.dropdown-menu-top {
  bottom: 100%;
}

[dir] .dropdown-menu-top {
  margin-bottom: 1px;
}

[dir="rtl"] .dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

[dir="rtl"] .dropdown-menu-end {
  right: auto;
  left: 0;
}

.dropdown-toggle--user {
  font-size: calc(14px - 5px);
  font-weight: 700;
  line-height: 1.4;
  color: #37474f;
  text-transform: uppercase;
}

[dir] .dropdown-toggle--user {
  padding: 0;
  border: 0;
}
/* ==========================================================================
  Notification
  ========================================================================== */
.notification {
  display: table;
  width: 100%;
  font-family: sans-serif;
  font-size: 12px;
  color: #555;
  transition: height 0.2s;
}

[dir] .notification {
  padding: 13px 15px;
  border: 1px solid;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  max-width: 980px;
}

[dir] .notification-inner {
  padding: 0 20px;
  margin: 0 auto;
}

.notification-icon,
.notification-text,
.notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  width: 100%;
}

[dir] .notification-text {
  padding: 0 15px;
}

.notification + .notification {
  position: relative;
  top: -1px;
}

[dir] .notification + .notification {
  margin-bottom: -1px;
}
/* Error */
[dir] .notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

[dir] .notification-error .notification-icon:before,
[dir] .notification-error .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}
/* Notice */
[dir] .notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

[dir] .notification-notice .notification-icon:before,
[dir] .notification-notice .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}
/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
}

[dir] .notification-alert {
  background: #fff8ed;
  border-color: #fcdba9;
}

[dir] .notification-alert .notification-icon:before,
[dir] .notification-alert .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon:before,
.notification-inline.notification-error:before {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  content: "";
}

[dir] .notification-icon:before,
[dir] .notification-inline.notification-error:before {
  background-size: cover;
}
/* Dismiss button */
.notification-dismiss,
a.notification-dismiss {
  color: #555;
  text-decoration: none !important;
  opacity: 0.6;
  transition: opacity 100ms ease;
}

[dir] .notification-dismiss,
[dir] a.notification-dismiss {
  cursor: pointer;
}

.notification-dismiss:hover {
  opacity: 1;
}
/* Inline notifications */
.notification-inline {
  position: relative;
  line-height: 14px;
  vertical-align: middle;
}

[dir] .notification-inline {
  padding: 5px;
  margin-top: 5px;
  border-radius: 4px;
}

[dir="ltr"] .notification-inline {
  text-align: left;
}

[dir="rtl"] .notification-inline {
  text-align: right;
}

[dir="rtl"] .notification-inline {
  text-align: right;
}

.notification-inline[aria-hidden="true"] {
  display: none;
}

[dir] .notification-inline.notification-error:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
}

[dir="ltr"] .notification-inline.notification-error:before {
  margin: -2px 5px 0 0;
}

[dir="rtl"] .notification-inline.notification-error:before {
  margin: -2px 0 0 5px;
}

[dir="rtl"] .notification-inline.notification-error:before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  color: #cc3340;
}

[dir] .notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
}

[dir] .notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

[dir="ltr"] .notification-left-aligned {
  padding-left: 0;
  text-align: left;
}

[dir="rtl"] .notification-left-aligned {
  padding-right: 0;
  text-align: right;
}

.skip-navigation {
  position: absolute;
  top: auto;
  z-index: -999;
  display: flex;
  overflow: hidden;
  font-size: 14px;
  color: white;
  align-items: center;
  justify-content: center;
}

[dir] .skip-navigation {
  padding: 20px;
  margin: 20px;
  background-color: black;
}

[dir="ltr"] .skip-navigation {
  left: -999px;
}

[dir="rtl"] .skip-navigation {
  right: -999px;
}

.skip-navigation:focus,
.skip-navigation:active {
  top: auto;
  z-index: 999;
  overflow: auto;
  text-decoration: none;
}

[dir] .skip-navigation:focus,
[dir] .skip-navigation:active {
  text-align: center;
}

[dir="ltr"] .skip-navigation:focus,
[dir="ltr"] .skip-navigation:active {
  left: auto;
}

[dir="rtl"] .skip-navigation:focus,
[dir="rtl"] .skip-navigation:active {
  right: auto;
}
/*Community*/
.community-nav {
  display: flex;
  justify-content: space-between;
}

[dir] .community-nav {
  margin-bottom: calc(10px * 3);
}

.community-nav__items {
  display: flex;
}

[dir] .community-nav__items {
  margin: 0;
}

.community-nav__item {
  font-size: calc(14px * 1.125);
}

[dir="ltr"] .community-nav__item {
  margin-right: 10px;
}

[dir="rtl"] .community-nav__item {
  margin-left: 10px;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
}

[dir="ltr"] .topic-list {
  margin: 0 - (10px) calc(10px * 3);
}

[dir="rtl"] .topic-list {
  margin: 0 calc(10px * 3) (10px) -;
}

.topic-list-item {
  width: 50%;
}

[dir] .topic-list-item {
  padding: 0 10px;
  margin-bottom: calc(10px * 2);
}
@media (max-width: 768px) {
  .topic-list-item {
    width: 100%;
  }
}

.topic-list-item__title a {
  color: #37474f;
}

.topic-list-item__title a:hover {
  color: rgba(33, 168, 181, 1);
}

[dir] .topic-list-item__box {
  padding: calc(10px * 2);
  border: 1px solid #eceff1;
  border-radius: 10px;
}

.topic-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

[dir] .topic-header {
  margin-bottom: calc(10px * 3);
  border-bottom: 1px solid #eceff1;
}

.topic-header__title {
  font-size: calc(14px * 2);
}

[dir] .topic-header__title {
  margin-bottom: 10px;
}

.topic-header__title span {
  color: rgba(33, 168, 181, 1);
}

[dir] .topic-header__button {
  margin-bottom: 10px;
}

.topic-description {
  width: 100%;
  color: #90a4ae;
}

[dir] .topic-description {
  margin-bottom: 10px;
}

.topic-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

[dir] .topic-controls {
  margin-bottom: calc(10px * 3);
}

.topic-filters__item {
  display: inline-block;
}

[dir] .topic-filters__item {
  margin-bottom: 10px;
}

.topic-controls__subscribe {
  display: flex;
  align-items: center;
}

[dir="ltr"] .topic-controls__subscribe .meta {
  padding-right: 10px;
}

[dir="rtl"] .topic-controls__subscribe .meta {
  padding-left: 10px;
}

[dir] .post-list {
  margin-bottom: calc(10px * 5);
}

[dir] .post-list-item {
  padding-bottom: calc(10px * 1.5);
  margin-bottom: calc(10px * 3);
  border-bottom: 1px solid #eceff1;
}
@media (min-width: 769px) {
  .post-list-item {
    display: flex;
    justify-content: space-between;
  }
}

.post-list-item a {
  text-decoration: none;
}

.post-list-item__title {
  font-size: calc(14px * 1.375);
  color: rgba(33, 168, 181, 1);
}

[dir] .post-list-item__title {
  margin-bottom: calc(10px / 2);
}

.post-list-item__title a:hover {
  color: #37474f;
}

.post-list-item__col--side {
  flex-shrink: 0;
}

.post-info {
  display: inline-flex;
  color: #90a4ae;
}
@media (min-width: 769px) {
  .post-info {
    display: inline-block;
    min-width: 90px;
    line-height: 1.35;
  }

  [dir] .post-info {
    padding: 6px 2px;
    text-align: center;
    border: calc(1px * 2) solid #eceff1;
  }

  [dir="ltr"] .post-info {
    margin-right: 0;
    margin-left: calc(10px / 3);
  }

  [dir="rtl"] .post-info {
    margin-right: calc(10px / 3);
    margin-left: 0;
  }

  .post-info:after {
    display: none;
  }

  .post-info .post-info__count {
    display: block;
    font-size: 14px;
    color: #37474f;
  }
}

[dir] .post__text {
  margin-bottom: calc(10px * 3);
}

[dir] .post-callout {
  padding: 10px;
}

.post-callout__title {
  font-size: calc(14px * 1.625);
}

[dir] .post-callout__title {
  margin-bottom: calc(10px * 1.5);
}

.post__header {
  position: relative;
}

[dir] .post__header {
  padding-bottom: calc(10px * 1.5);
  margin-bottom: calc(10px * 1.5);
  border-bottom: 1px solid #eceff1;
}

[dir] .post__title {
  margin-bottom: calc(10px * 2.5);
}
@media (max-width: 420px) {
  .post__title {
    font-size: calc(14px * 1.625);
  }
}

.post-status {
  display: inline-block;
  font-size: calc(14px * 0.75);
  line-height: 1.5;
}

[dir] .post-status {
  padding: 0 calc(10px / 2);
}

.post-status--answered {
  color: #ffffff;
}

[dir] .post-status--answered {
  background-color: #5cb85c;
}

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

[dir="ltr"] .post-subscribe {
  margin-left: 10px;
}

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

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

[dir] .post-new {
  padding: calc(10px * 1.5) 0;
  margin: calc(10px * 3) 0;
  border-top: 1px solid #eceff1;
  border-bottom: 1px solid #eceff1;
}

[dir] .post-new__title {
  margin-bottom: 0;
}

.post-new__button {
  flex-shrink: 0;
}

[dir="ltr"] .post-new__button {
  margin-left: 10px;
}

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

.post__voting-and-actions,
.comment__voting-and-actions {
  position: absolute;
  top: 0;
}

[dir="ltr"] .post__voting-and-actions,
[dir="ltr"] .comment__voting-and-actions {
  right: 0;
}

[dir="rtl"] .post__voting-and-actions,
[dir="rtl"] .comment__voting-and-actions {
  left: 0;
}

.post__voting-and-actions .vote--post,
.post__voting-and-actions .vote--comment,
.comment__voting-and-actions .vote--post,
.comment__voting-and-actions .vote--comment {
  display: flex;
  flex-direction: column;
}

[dir] .post__voting-and-actions .vote--post,
[dir] .post__voting-and-actions .vote--comment,
[dir] .comment__voting-and-actions .vote--post,
[dir] .comment__voting-and-actions .vote--comment {
  margin: 0;
}

.post__voting-and-actions .vote-control,
.post__voting-and-actions .dropdown-toggle,
.comment__voting-and-actions .vote-control,
.comment__voting-and-actions .dropdown-toggle {
  width: 24px;
  min-width: 0;
  height: 24px;
  line-height: 24px;
}

[dir] .post__voting-and-actions .vote-control,
[dir] .post__voting-and-actions .dropdown-toggle,
[dir] .comment__voting-and-actions .vote-control,
[dir] .comment__voting-and-actions .dropdown-toggle {
  padding: 0;
  text-align: center;
  border: none;
}

.post__voting-and-actions .vote-control--up,
.comment__voting-and-actions .vote-control--up {
  line-height: 20px;
}

[dir] .post__voting-and-actions .vote-sum,
[dir] .comment__voting-and-actions .vote-sum {
  text-align: center;
}

.post__voting-and-actions .dropdown-toggle {
  position: relative;
  color: rgba(33, 168, 181, 1);
  text-indent: -9999px;
  transition: all 0.2s;
}

[dir] .post__voting-and-actions .dropdown-toggle {
  margin-top: 10px;
  background-color: #ffffff;
  border-radius: 50%;
}

.comment__voting-and-actions .dropdown-toggle {
  position: relative;
  color: rgba(33, 168, 181, 1);
  text-indent: -9999px;
  transition: all 0.2s;
}

[dir] .comment__voting-and-actions .dropdown-toggle {
  margin-top: 10px;
  background-color: #ffffff;
  border-radius: 50%;
}

.post__voting-and-actions .dropdown-toggle:after,
.comment__voting-and-actions .dropdown-toggle:after {
  position: absolute;
  top: 0;
  bottom: 0;
  line-height: 24px;
  text-indent: 0;
  content: "\f013";
}

[dir] .post__voting-and-actions .dropdown-toggle:after,
[dir] .comment__voting-and-actions .dropdown-toggle:after {
  text-align: center;
}

[dir="ltr"] .post__voting-and-actions .dropdown-toggle:after,
[dir="ltr"] .comment__voting-and-actions .dropdown-toggle:after {
  right: 0;
  left: 0;
  margin-left: 0;
}

[dir="rtl"] .post__voting-and-actions .dropdown-toggle:after,
[dir="rtl"] .comment__voting-and-actions .dropdown-toggle:after {
  right: 0;
  left: 0;
  margin-right: 0;
}

.post__voting-and-actions .dropdown-toggle:hover {
  color: #ffffff;
}

[dir] .post__voting-and-actions .dropdown-toggle:hover {
  background-color: rgba(33, 168, 181, 1);
}

.comment__voting-and-actions .dropdown-toggle:hover {
  color: #ffffff;
}

[dir] .comment__voting-and-actions .dropdown-toggle:hover {
  background-color: rgba(33, 168, 181, 1);
}

.post__header .post__voting-and-actions {
  position: static;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

[dir] .post__header .post__voting-and-actions {
  margin-top: 10px;
}

.post__header .post__voting-and-actions .vote--post {
  flex-direction: row;
}

[dir] .post__header .post__voting-and-actions .vote-sum {
  margin: 0 calc(10px / 2);
}

.post__header .post__voting-and-actions .vote-control,
.post__header .post__voting-and-actions .dropdown-toggle {
  width: 28px;
  height: 28px;
}

[dir="ltr"] .post__header .post__voting-and-actions .post__actions {
  margin-left: calc(10px / 2);
}

[dir="rtl"] .post__header .post__voting-and-actions .post__actions {
  margin-right: calc(10px / 2);
}

.post__header .post__voting-and-actions .post__actions .dropdown-toggle {
  display: block;
}

[dir] .post__header .post__voting-and-actions .post__actions .dropdown-toggle {
  margin-top: 0;
}

.post__header .post__voting-and-actions .post__actions .dropdown-toggle:after {
  line-height: 28px;
}

[dir] .post-share {
  margin-bottom: calc(10px * 3);
}

.post__actions button {
  display: flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
}

[dir] .post__actions button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

[dir="ltr"] .post__actions button {
  margin-right: auto;
  margin-left: auto;
}

[dir="rtl"] .post__actions button {
  margin-right: auto;
  margin-left: auto;
}

.new-community-post-page,
.new-request-page {
  max-width: 600px;
}
@media (max-width: 1024px) {
  [dir] .new-community-post-page,
  [dir] .new-request-page {
    margin: auto;
  }
}

[dir] .new_community_post,
[dir] .new-request-form {
  margin-bottom: 0;
}

[dir] .new_community_post .form-field {
  margin-bottom: calc(10px * 2);
}

[dir] .new-request-form .form-field {
  margin-bottom: calc(10px * 2);
}

.new_community_post .form-field p {
  color: #90a4ae;
}

[dir] .new_community_post .form-field p {
  margin-top: calc(10px / 2);
}

.new-request-form .form-field p {
  color: #90a4ae;
}

[dir] .new-request-form .form-field p {
  margin-top: calc(10px / 2);
}

.new_community_post .form-field input,
.new_community_post .form-field textarea,
.new-request-form .form-field input,
.new-request-form .form-field textarea {
  width: 100%;
  height: 36px;
}

.new_community_post .form-field input,
.new-request-form .form-field input {
  line-height: 36px;
}

.new_community_post .form-field textarea,
.new-request-form .form-field textarea {
  min-height: 200px;
}

.new_community_post .form-field .upload-dropzone {
  position: relative;
}

[dir] .new_community_post .form-field .upload-dropzone {
  border-color: #eceff1;
  border-radius: 10px;
}

.new-request-form .form-field .upload-dropzone {
  position: relative;
}

[dir] .new-request-form .form-field .upload-dropzone {
  border-color: #eceff1;
  border-radius: 10px;
}

.new_community_post .form-field .upload-dropzone input[type="file"],
.new-request-form .form-field .upload-dropzone input[type="file"] {
  position: relative;
  z-index: 1;
  height: 80px;
  font-size: 14px;
  opacity: 0;
}

.new_community_post .form-field .upload-dropzone span,
.new-request-form .form-field .upload-dropzone span {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  font-size: 14px;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .new_community_post .form-field .upload-dropzone span,
[dir="ltr"] .new-request-form .form-field .upload-dropzone span {
  right: 0;
  left: 0;
}

[dir="rtl"] .new_community_post .form-field .upload-dropzone span,
[dir="rtl"] .new-request-form .form-field .upload-dropzone span {
  right: 0;
  left: 0;
}

.new_community_post .form-field .upload-dropzone span a {
  font-size: inherit;
  color: rgba(33, 168, 181, 1);
}

[dir] .new_community_post .form-field .upload-dropzone span a {
  padding: 0 calc(10px / 2);
}

.new-request-form .form-field .upload-dropzone span a {
  font-size: inherit;
  color: rgba(33, 168, 181, 1);
}

[dir] .new-request-form .form-field .upload-dropzone span a {
  padding: 0 calc(10px / 2);
}

.new_community_post label {
  display: inline-block;
  font-size: calc(14px * 1.125);
}

[dir] .new_community_post label {
  margin-bottom: calc(10px / 2);
}

.new-request-form label {
  display: inline-block;
  font-size: calc(14px * 1.125);
}

[dir] .new-request-form label {
  margin-bottom: calc(10px / 2);
}

[dir] #hc-wysiwyg {
  border-color: #eceff1;
  border-radius: 10px;
}

/*FORTANIX*/

.topbar__col--logo .help-center-name {
  font-family: 'Montserrat';
  color: #21205E;
  text-transform: none;
  font-size: 36px;
  font-weight: 600;
}
/*fortanix headings*/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat';
  color: #27235D;
  font-weight: 400;
}
.h3, h3 {
  font-size: calc(14px * 1.125)

}

.d-none {
  display: none !important;
}
.section__title-link {
  color: #21205E;
}
.sidenav__category-name {
  font-family: "Montserrat";
	font-size: 14px;
  text-transform: uppercase;
}
.dropdown-toggle--user {
  font-family: "Montserrat";
}
.home-categories__link {
  display: flex;
  flex-direction: column;
}
.home-categories__link a {
  margin-bottom: 5px;
}
.article-list-item {
  font-size: 14px;
}
.page-header__headline {
  justify-content: flex-start;
  align-items: center;
  h1 {
    margin-bottom: 0;
  }
  .h2 {
    margin-bottom: 0;
  }
}
.category-header-icon {
  padding-right: 10px;
  padding-bottom: 10px;
}

/* Topbar Nav CSS */
nav.topbar-navigation {
    box-shadow: 0px 4px 4px 0px #0000000d;
}
.topbar-navigation .container {
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
}
.topbar-navigation .topbar-navigation__link {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.571429px;
  text-transform: capitalize;
  color: #46497C;
  display: flex;
  align-items: center;
  border-bottom: 4px solid #fff;
  padding: 0px 20px;
}
.topbar-navigation .topbar-navigation__link:hover {
  border-bottom: 4px solid #00C6DA;
}
.topbar-navigation .topbar-navigation__link span {
  margin-left: 10px;
  padding: 20px 0;
}

.article-list.mb-3 {
  margin-bottom: 30px;
}

.article-list.mt-1 {
  margin-top: 10px;
}

.home-categories__content .home-categories__title {
  font-size: 15px;
  font-weight: 600l;
}

@media only screen and (max-width: 767px) {
  .topbar-navigation .container {
		flex-direction: column;
    align-items: center;
  }
}

/* Algorithm Support Table CSS Starts */
.algorithm-support-table {
    background-color: #fff;
    text-align:center;
    color: #333370;
  	margin-bottom: 0 !important;
}
.algorithm-support-table th, 
.algorithm-support-table td {
    text-align:center;
    padding: 10px;
}
.algorithm-support-table tbody tr:nth-child(1), 
.algorithm-support-table tbody tr:nth-child(2), 
.algorithm-support-table tbody tr:nth-child(3) {
    background-color: #fcfcfc;
}
.algorithm-support-table tbody tr:nth-child(4), 
.algorithm-support-table tbody tr:nth-child(5), 
.algorithm-support-table tbody tr:nth-child(6), 
.algorithm-support-table tbody tr:nth-child(7) {
    background-color: #f5f5f5;
}
.algorithm-support-table tbody tr:nth-child(8), 
.algorithm-support-table tbody tr:nth-child(9), 
.algorithm-support-table tbody tr:nth-child(10) {
    background-color: #f7fdff;
}
.algorithm-support-table tbody tr:nth-child(11) {
    background-color: #EAF9FD;
}
.algorithm-support-table tbody tr:nth-child(12) {
    background-color: #DDF2F8;
}
.algorithm-support-table tbody tr:nth-child(1) td:nth-child(1), 
.algorithm-support-table tbody tr:nth-child(8) td:nth-child(1) {
    background-color: #fff;
}
/* Algorithm Support Table CSS Ends */

/* Article Message CSS Starts */
.article-message {
  display: flex;
  flex-direction: column;
  border-radius: 1px;
  margin: 30px 0;
}

.article-message__header {
  font-family: 'Montserrat';
  display: flex;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
}

.article-message__header:before {
  content: '';
  display: block;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.article-message__description {
  padding: 12px 20px;
  font-size: 15.75px;
  font-family: 'Open Sans', sans-serif;
}

.article-message.article-message--tip {
  border: 1px solid #80deea;
  border-left: 8px solid #80deea;
}

.article-message.article-message--tip .article-message__header {
  border-bottom: 1px solid #80deea;
  background-color: #f2fbfc;
}

.article-message.article-message--tip .article-message__header:before {
  background-image: url(/hc/theming_assets/01HZPC77GPVGGZ3TQZB3VG3HKA);
}

.article-message.article-message--tip > p:first-child {
  border-bottom: 1px solid #80deea;
  background-color: #f2fbfc;
  font-family: 'Montserrat';
  display: flex;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
}

.article-message.article-message--tip > p:nth-child(2),
.article-message.article-message--tip > ul:nth-child(2) {
  padding: 12px 20px;
  font-size: 15.75px;
  font-family: 'Open Sans', sans-serif;
}

.article-message.article-message--tip > ul:nth-child(2) {
  padding: 12px 20px 12px 40px;
}

.article-message.article-message--tip > p:first-child:before {
  background-image: url(/hc/theming_assets/01HZPC77GPVGGZ3TQZB3VG3HKA);
  content: '';
  display: block;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.article-message.article-message--important {
  border: 1px solid #abbfdd;
  border-left: 8px solid #abbfdd;
}

.article-message.article-message--important > p:first-child {
  border-bottom: 1px solid #abbfdd;
  background-color: #EAEFF6;
  font-family: 'Montserrat';
  display: flex;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
}

.article-message.article-message--important > p:nth-child(2),
.article-message.article-message--important > ul:nth-child(2) {
  padding: 12px 20px;
  font-size: 15.75px;
  font-family: 'Open Sans', sans-serif;
}

.article-message.article-message--important > ul:nth-child(2) {
  padding: 12px 20px 12px 40px;
}

.article-message.article-message--important > p:first-child:before {
  background-image: url(/hc/theming_assets/01HZPC77N8EA77G5SNR7A46DAV);
  content: '';
  display: block;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.article-message.article-message--important .article-message__header {
  border-bottom: 1px solid #abbfdd;
  background-color: #EAEFF6;
}

.article-message.article-message--important .article-message__header:before {
  background-image: url(/hc/theming_assets/01HZPC77N8EA77G5SNR7A46DAV);
}

.article-message.article-message--warning {
  border: 1px solid #f6a623;
  border-left: 8px solid #f6a623;
}

.article-message.article-message--warning .article-message__header {
  border-bottom: 1px solid #f6a623;
  background-color: #fff6e9;
}

.article-message.article-message--warning .article-message__header:before {
  background-image: url(/hc/theming_assets/01HZPC77CPVAHAKNGTW6KY6KZ4);
}

.article-message.article-message--warning > p:first-child {
  border-bottom: 1px solid #f6a623;
  background-color: #fff6e9;
  font-family: 'Montserrat';
  display: flex;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
}

.article-message.article-message--warning > p:nth-child(2),
.article-message.article-message--warning > ul:nth-child(2) {
  padding: 12px 20px;
  font-size: 15.75px;
  font-family: 'Open Sans', sans-serif;
}

.article-message.article-message--warning > ul:nth-child(2) {
  padding: 12px 20px 12px 40px;
}

.article-message.article-message--warning > p:first-child:before {
  background-image: url(/hc/theming_assets/01HZPC77CPVAHAKNGTW6KY6KZ4);
  content: '';
  display: block;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}
/* Article Message CSS Ends */

/* Autotabs CSS Starts */
.autotabs {
  border-bottom: 1px solid #DCE5F3;
  display: block;
  margin-left: 0;
}
ul.autotabs {
  margin-left: 0;
  padding-left: 0;
}
.autotab {
  margin-top: 5px;
  margin-left: 5px;
  position: relative;
  display: inline-block;

  color: #4D758C;
  border: 1px solid #DCE5F3;
  border-bottom-color: transparent;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  cursor: default;
}
li.current a {
    background-color: #fff;
    color: #4D758C;
    cursor: default;
    border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
li.autotab a {
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 5px 10px;
    box-sizing: border-box;
    border-bottom: 0;
    text-align: center;
    padding: 10px 15px;
  font-family: 'Montserrat';
  font-weight: 400;
}
li.autotab:hover {
    background-color: #fff;
    color: #000;
}
.white-box {
    background: #FFF;
    box-shadow: 0 2px 10px 0 rgb(57 57 98 / 16%);
    padding: 18px 24px;
    margin-top: 12px;
    margin-bottom: 30px;
}
.white-box ul, 
.white-box ul li {
  padding: 0 !important;
  margin: 0 !important;
}
.white-box ul ::marker {
  content: none;
}
#tabs ul.autotabs li {
  margin-bottom: 0;
}
/* Autotabs CSS Ends */

.home-categories__item.ml-0 {
  margin-left: 0 !important;
}

/*RTE community on the homepage*/
.rte-banner {
  
  background-color: #F7F9FC;
  border-radius: 12px;
  display: flex;
  padding: 12px;
  margin-bottom: 12px;
  min-height: 60px;
}
.rte-banner__icon {
  width: 24px;
  margin-left: 20%;
  margin-right: 12px;
}
.rte-banner__icon2 {
  width: 36px;
}
@media only screen and (max-width: 767px) {
  .rte-banner__icon {
    margin-left: 15px;
  }	
  .help-link .tooltip-text {
    display: none;
  }
}
.rte-header {
  line-height: 24px;
}
.article__body code {
  background: #eee;
  border: .25px solid #eee;
  border-radius: 3px;
  padding: 0 3px;
  margin: 0 2px;
}
.article__body pre code {
  /* background: #ebf8ff; */
  color: #d8dee9;
  background: #2e3440;
  border: none;
  border-radius: 3px;
  margin: 0 2px;
  overflow: visible;
}
pre {
  /* background: #ebf8ff; */
  color: #d8dee9;
  background: #2e3440;
  border: .25px solid #eee;
  border-radius: 3px;
  overflow-x: auto;
  padding: 16px;
}
.layout .wrapper .main-wrapper__inner {
  padding-left: 25px;
}

/* Copy Icon */
.current {
  position: relative;
}
.current .copy-icon-wrapper {
  top: 70px;
}
.copy-icon-wrapper {
  position: absolute;
  right: -20px;
  top: 0px;
  width: auto;
  white-space: nowrap;
}
.copy-icon-wrapper .copy-tooltip {
  display: none;
  position: absolute;
  bottom: -30px;
  right: -15px;
  max-width: none;
  width: 50px;
}
.copy-icon {
  width: 18px;
}
.highlighter-rouge {
  position: relative;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 0 0 15px 0;
  display: block;
  padding: 0;
  text-transform: uppercase;
}

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

.breadcrumbs li {
  color: #333370;
  display: inline;
  font-weight: 500;
  font-size: 14px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li a:visited {
  color: rgba(0, 198, 218, 1);
}

.layout .breadcrumbs li:after {
    padding: 0px 5px;
}

.home-categories__item:last-child {
    width: 100%;
}
.home-categories__item:last-child .home-categories__link {
   padding: 10px;
   height: auto;
}
.home-categories__item:last-child .home-categories__link a {
   display: flex;
   align-items: center;
}
.home-categories__item:last-child .home-categories__link a .home-categories__icon, 
.home-categories__item:last-child .home-categories__link a h2 {
    margin-bottom: 0;
}

/* Dark Theme Code CSS Starts */
.hljs{display:block;overflow-x:auto;padding:.5em;background:#2e3440}.hljs,.hljs-subst{color:#d8dee9;background: #2e3440;}.hljs-selector-tag{color:#81a1c1}.hljs-selector-id{color:#8fbcbb;font-weight:700}.hljs-selector-class{color:#8fbcbb}.hljs-selector-attr{color:#8fbcbb}.hljs-selector-pseudo{color:#88c0d0}.hljs-addition{background-color:rgba(163,190,140,.5)}.hljs-deletion{background-color:rgba(191,97,106,.5)}.hljs-built_in,.hljs-type{color:#8fbcbb}.hljs-class{color:#8fbcbb}.hljs-function{color:#88c0d0}.hljs-function>.hljs-title{color:#88c0d0}.hljs-keyword,.hljs-literal,.hljs-symbol{color:#81a1c1}.hljs-number{color:#b48ead}.hljs-regexp{color:#ebcb8b}.hljs-string{color:#a3be8c}.hljs-title{color:#8fbcbb}.hljs-params{color:#d8dee9}.hljs-bullet{color:#81a1c1}.hljs-code{color:#8fbcbb}.hljs-emphasis{font-style:italic}.hljs-formula{color:#8fbcbb}.hljs-strong{font-weight:700}.hljs-link:hover{text-decoration:underline}.hljs-quote{color:#4c566a}.hljs-comment{color:#928374}.hljs-doctag{color:#8fbcbb}.hljs-meta,.hljs-meta-keyword{color:#5e81ac}.hljs-meta-string{color:#a3be8c}.hljs-attr{color:#8fbcbb}.hljs-attribute{color:#d8dee9}.hljs-builtin-name{color:#81a1c1}.hljs-name{color:#81a1c1}.hljs-section{color:#88c0d0}.hljs-tag{color:#81a1c1}.hljs-variable{color:#d8dee9}.hljs-template-variable{color:#d8dee9}.hljs-template-tag{color:#5e81ac}.abnf .hljs-attribute{color:#88c0d0}.abnf .hljs-symbol{color:#ebcb8b}.apache .hljs-attribute{color:#88c0d0}.apache .hljs-section{color:#81a1c1}.arduino .hljs-built_in{color:#88c0d0}.aspectj .hljs-meta{color:#d08770}.aspectj>.hljs-title{color:#88c0d0}.bnf .hljs-attribute{color:#8fbcbb}.clojure .hljs-name{color:#88c0d0}.clojure .hljs-symbol{color:#ebcb8b}.coq .hljs-built_in{color:#88c0d0}.cpp .hljs-meta-string{color:#8fbcbb}.css .hljs-built_in{color:#88c0d0}.css .hljs-keyword{color:#d08770}.diff .hljs-meta{color:#8fbcbb}.ebnf .hljs-attribute{color:#8fbcbb}.glsl .hljs-built_in{color:#88c0d0}.groovy .hljs-meta:not(:first-child){color:#d08770}.haxe .hljs-meta{color:#d08770}.java .hljs-meta{color:#d08770}.ldif .hljs-attribute{color:#8fbcbb}.lisp .hljs-name{color:#88c0d0}.lua .hljs-built_in{color:#88c0d0}.moonscript .hljs-built_in{color:#88c0d0}.nginx .hljs-attribute{color:#88c0d0}.nginx .hljs-section{color:#5e81ac}.pf .hljs-built_in{color:#88c0d0}.processing .hljs-built_in{color:#88c0d0}.scss .hljs-keyword{color:#81a1c1}.stylus .hljs-keyword{color:#81a1c1}.swift .hljs-meta{color:#d08770}.vim .hljs-built_in{color:#88c0d0;font-style:italic}.yaml .hljs-meta{color:#d08770}
/* Dark Theme Code CSS Ends */

/* Figure Caption CSS Starts */
.fig-caption {
  display: block;
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  margin-bottom: 16px;
}
/* Figure Caption CSS Ends */

/* dash bullet Starts */
ul {
  margin: 0;
}
.dashed {
  list-style-type: none;
}
ul.dashed > li {
  text-indent: -5px;
}
ul.dashed > li:before {
  content: "-";
  text-indent: -5px;
}
/* dash bullet CSS Ends */

/* Installastion Box CSS Starts */
article .installation-wrapper {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    background-color: #F5F9FC;
}
article .installation-wrapper h2 {
    margin-top: 0 !important;
}
/* Installastion Box CSS Ends */

/* Smartkey Card Home Page CSS Starts */
.smartkey-card {
   /* border: 1px solid #EEF1F3;*/
    border-radius: 5px;
    padding: 9px;
    background: #F7F9FC;
    box-sizing: border-box;
    margin-bottom: 30px;
  	position: relative;
    display: flex;
}
.smartkey-card .header-and-cta {
  width: 40%;
  text-align: center;
}
.smartkey-card .logo-section {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 24px;
}

.smartkey-card .logo-section .smartkey-logo {
  /*background: #FCF0F4;*/
  background: #Fff;
  border: 4px solid #FCF0F4;
  border-radius: 10px 0 0 10px;
  padding: 8px 12px;
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.smartkey-card .logo-section .dsm-logo {
  /*background: #E4EFFF;*/
  background: #Fff;
  border: 4px solid #E4EFFF;
  border-radius: 0 10px 10px 0;
  padding: 8px 12px;
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.smartkey-card .logo-section .dsm-logo img {
  align-self: center;
  max-width: 150px;
  width: 100%;
}

.smartkey-card .logo-section .smartkey-logo img {
  align-self: center;
  max-width: 150px;
  width: 100%;
}

.smartkey-card .logo-section .logo-separator {
  background: #FFFFFF;
  border: 0.2px solid #6E7FBB;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 4px 4px 7px;
  border-radius: 100%;
  position: absolute;
  top: calc(50% - 12.5px);
  left: calc(50% - 12.5px);
}

.smartkey-card h3.smartkey-card__heading {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #5F6088;
  margin-top: 8px;
  padding-left: 15px;
  text-align: center;
}

.smartkey-card .cloud-img {
  right: 10px;
  bottom: 10px;
  position: absolute;
  width: 60px;
}

.smartkey-card .smartkey-card__cta {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  color: #21A8B5;
  display: block;
  text-align: center;

}

.smartkey-card .smartkey-card__cta:hover {
  color: #156c74;
}

@media only screen and (min-width: 768px) {
  .smartkey-card .smartkey-card__cta {
    right: 30px;
    bottom: 30px;
  }
  .smartkey-card .cloud-img {
    right: 50px;
    bottom: 70px;
    width: 180px;
  }
  .smartkey-card .logo-section {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .smartkey-card .cloud-img {
    right: 150px;
    bottom: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .smartkey-card {
    display: block;
  }
  .smartkey-card .header-and-cta {
  width: 100%;
}
    .smartkey-card .logo-section {
    width: 100%;
      margin-left: 0;
  }
  .smartkey-card .smartkey-card__cta {
    margin-bottom: 24px;
  }
  
}
/* Smartkey Card Home Page CSS Ends */

header.topbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.editor-mode header.topbar {
  top: 50px;
}

nav.topbar-navigation {
    margin-top: 101px;
}
.sidebar__top-nav {
  display: none;
}

.article__body code.word-break, .article__body span.word-break, .article__body a.word-break {
  word-break: break-all;
}

.dsm-banner {
  margin-bottom: 30px;
}

.webinar-banner {
  display: none;
  margin-bottom: 30px;
  position: relative;
}

@media (min-width: 992px) {
  .banner-wrapper {
    display: flex;
  }
  .dsm-banner {
    max-width: 48.5%;
    margin-right: 30px;
  }
  .webinar-banner {
    max-width: 48.5%;
  }
}

.cta-wrapper {
    position: absolute;
    left: 30px;
    bottom: 16px;
    width: 85%;
    display: flex;
}

.webinar-cta-2 {
  padding-left: 20px;
}

[data-category-id="4403485253780"],[data-sidenav-category-id="4403485253780"] {
  display: none;
}

.tooltip {
  padding-left: 5px;
}

.tooltip--two {
  padding: 0;
}

.help-link {
  text-align: center;
  padding-right: 10px;
}

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

.tooltip .tooltiptext {
  visibility: hidden; 
  width: 250px;
  position: absolute;
  z-index: 1;
  top: 30px;
  right: -35px;
  background: #DCE5F3;
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  font-size: 11px;
  line-height: 14px;
  padding: 10px 25px;
  color: #081353;
  text-align: left;
}

.tooltip--two .tooltiptext {
  width: 150px;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 40px;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #DCE5F3 transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Search Result Title */
a.search-result-link {
    font-size: 21px;
    font-weight: 600;
    text-decoration: underline;
}

/* Section Category page Styling */
a.article-list-item__link, .article-list-link, .subsec-list a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 17px;
    color: #00838F;
}

.section-tree .section-tree__column li.article-list-item, .section-page .article-list li.article-list-item {
    flex: 0 0 48%;
    width: 48%;
    margin-bottom: 19px;
    list-style: disc;
}

ul.article-list.list-unstyled {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 0.5px solid #ABBFDD;
    padding-top: 30px;
}

ul.subsec-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

h3.section__title, h2.section__title {
    margin-bottom: 10px;
}

h3.section__title i,  h2.section__title i {
  color: #21A8B5;
}

.section__title-link, .section__title-link h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    color: #13132A;
}

.section-tree section.section-tree__column {
  width: 100%;
}

section.related-articles {
  padding: 26px 30px;
  background: rgba(0, 131, 143, 0.07);
  border-radius: 15px;
  margin-bottom: 30px
}

section.related-articles .related-articles-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #081353;
}

section.related-articles ul {
  padding-left: 20px;
}

section.related-articles ul li {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
}

.requests-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-category-id="4406100511636"] .home-categories__icon,
[data-category-id="360003107511"] .home-categories__icon,
[data-category-id="4410261553428"] .home-categories__icon {
  height: 50px;
  width: 185px;
}

[data-category-id="25620195711508"] .home-categories__icon,
[data-category-id="25560749178260"] .home-categories__icon {
  height: 50px;
  width: 160px;
}

.main-list [data-category-id="6676333597716"] {
  display: none;
}

[data-category-id="6676333597716"] .home-categories__icon {
  height: 50px;
  width: 130px;
}

[data-article-page-id="10644636415380"] .article-column-toc,
[data-article-page-id="360041034152"] .article-column-toc,
[data-article-page-id="41890018092948"] .article-column-toc, 
[data-article-page-id="41890039099028"] .article-column-toc {
  display: none;
}

[data-article-page-id="10644636415380"] .article-column-body,
[data-article-page-id="360041034152"] .article-column-body,
[data-article-page-id="41890018092948"] .article-column-body, 
[data-article-page-id="41890039099028"] .article-column-body  {
	width: 100%;
}

/* [data-category-id="4410261553428"] {
  display: none;
} */

.cai-banner {
  background: #F7F9FC;
	border-radius: 5px;
  padding: 20px 25px;
  margin-bottom: 30px;
}

.cai-banner a {
  display: flex;
  align-items: center;
}

.cai-banner a img {
  margin-right: 25px;
}

.cai-banner a span {
  align-self: center;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  color: #27235E;
}

.cai-banner a span strong {
  color: rgba(33, 168, 181, 1);
}

.leadinModal.leadinModal-v3.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body .leadin-preview-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.leadinModal.leadinModal-v3.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body .leadin-preview-wrapper h4, 
.leadinModal.leadinModal-v3 .leadinModal-content .leadin-content-body .leadin-preview-wrapper p {
  margin: 0;
  width: 100%;
}

.leadinModal.leadinModal-v3.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body h4 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #081353 !important;
  padding: 20px 20px 10px;
}

.leadinModal.leadinModal-v3.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body p {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #6E7FBB !important;
  padding: 0 50px 0 20px;
  margin: 0;
}

.leadinModal.leadinModal-v3.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body .leadin-preview-wrapper .advance-wrapper {
  margin: 0 auto !important;
  width: 90%;
}

.leadinModal-v3.leadinModal.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body .leadin-preview-wrapper .dyno-image {
  width: 100% !important;
}

.leadinModal-v3.leadinModal.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-content .leadin-content-body .leadin-preview-wrapper .dyno-image img {
  max-width: 100%;
  max-height: 100%;
}

.leadinModal-v3.leadinModal.leadinModal-theme-bottom-left-corner.leadinModal-preview.leadinModal-reset .leadinModal-content {
  background: #fff !important;
  border-radius: 20px 20px 5px 5px;
  bottom: 15px;
  left: 15px;
}

.leadinModal-v3.leadinModal.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadin-button-secondary {
  background: linear-gradient(180deg, #00D9EE 0%, #00C6DA 100%) !important;
  border-radius: 24px;
  color: #fff !important;
  margin-bottom: 20px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.49875px;
  text-transform: uppercase;
  height: 40px;
}

.leadinModal-v3.leadinModal.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-close {
  background: rgba(255,255, 255, 0.3);
  border: 1.5px solid #fff;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.leadinModal-v3.leadinModal.leadinModal-theme-bottom-left-corner.leadinModal-preview .leadinModal-close::before {
  padding: 0;
  height: auto;
  width: auto;
}

.link-text {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
}

.link-text a:hover {
    text-decoration: underline;
}

/* Form Styles Starts */
.overlay,.overlay-2 {
    position: fixed;
    background: rgba(48,69,92,.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    overflow: auto;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.form-container {
    background: var(--white);
    border-radius: 17px;
    text-align: center
}

.form-wrapper {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
    border-radius: 9px;
    overflow: auto;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 40px 22px 30px 30px;
    position: relative;
}

.form-wrapper .close-btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
    padding-top: 4px;
    color: #26546d;
    font-size: 20px;
}

.form-wrapper .close-btn a,
.form-wrapper .close-btn a:hover {
    color: #26546d;
}

.form-without-overlay {
    margin-top: 0;
    margin-bottom: 0
}

.form-wrapper .close-btn span {
    cursor: pointer
}

.form-wrapper .form-heading {
    text-transform: uppercase;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #6c6e9b
}

.form-wrapper .frm-block {
    margin-top: 0
}
.form-wrapper label {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: left;
    color: #518199;
    margin-bottom: 8px;
    display: block;
}

.form-wrapper fieldset {
    text-align: left
}

.form-modern .frm-block .hs-fieldtype-intl-phone.hs-input select {
    width: 35%!important;
    margin-bottom: 0!important
}

.form-modern .frm-block .hs-fieldtype-intl-phone.hs-input input {
    width: 62%!important;
    margin: 0
}

.form-modern .frm-block input[type=email],.form-modern .frm-block input[type=password],.form-modern .frm-block input[type=tel],.form-modern .frm-block input[type=text],.form-modern .frm-block select,.form-modern .frm-block textarea {
    background: #f7f9fc;
    border: 2px solid #edeff2;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 0 0 0 10px;
    height: 40px;
    width: 100% !important;
}

.form-modern .frm-block select {
    background-image: linear-gradient(45deg,transparent 50%,#4d4d4d 0),linear-gradient(135deg,#4d4d4d 50%,transparent 0);
    background-position: calc(100% - 20px) calc(1em + 2px),calc(100% - 15px) calc(1em + 2px),calc(100% - 2.5em) .5em
}

.form-modern .frm-block select,.form-modern .frm-block select:focus {
    background-size: 5px 5px,5px 5px,1px 1.5em;
    background-repeat: no-repeat
}

.form-modern .frm-block select:focus {
    background-image: linear-gradient(45deg,#4d4d4d 50%,transparent 0),linear-gradient(135deg,transparent 50%,#4d4d4d 0);
    background-position: calc(100% - 15px) 1em,calc(100% - 20px) 1em,calc(100% - 2.5em) .5em;
    outline: 0
}

.frm-block label.hs-error-msg {
    color: #ea3248;
    font-size: 12px;
    display: block;
    margin-bottom: 5px
}

.frm-block .hs-input {
    margin-bottom: 20px;
}

.form-wrapper.form-container .frm-block form fieldset p {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #000
}

.form-wrapper.form-container .frm-block form fieldset p a {
    color: #518199
}

@media only screen and (max-width: 575px) {
    .form-modern .frm-block input[type=email],.form-modern .frm-block input[type=password],.form-modern .frm-block input[type=tel],.form-modern.frm-block input[type=text],.form-modern .frm-block select,.form-modern .frm-block textarea {
        height:35px
    }
}

.hs_schedule_a_demo_on_forms label.hs-form-booleancheckbox-display input {
    display: inline;
    margin-right: 10px
}

.hs_schedule_a_demo_on_forms label.hs-form-booleancheckbox-display span {
    display: inline;
    position: relative;
    top: -3px
}

.hs-form-booleancheckbox label {
    display: flex;
    align-items: center
}

.close-btn {
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
    padding-top: 4px;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    top: 0;
    right: 0;
    position: absolute;
    font-family: Montserrat
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
    display: block;
    margin-left: 0 !important;
}

#schedule_a_demo_on_forms-0062c454-312f-4f73-9060-1cd1cfad3c44 {
    height: 15px
}

form .cookie-reset-container {
    text-align: center!important;
    font-family: Montserrat;
    font-size: 12px;
    margin-top: -10px;
    color: #25235e
}

form .cookie-reset-container a {
    color: #25235e
}

form fieldset.form-columns-2 .input {
    margin-right: 8px
}

.form-wrapper .hs-interested_in_products label {
    display: flex;
    margin-bottom: 15px
}

.form-wrapper .hs-interested_in_products .input label {
    display: flex;
    margin-bottom: 5px
}

.form-wrapper .hs-interested_in_products .input label input {
    height: auto
}

.form-wrapper .hs-interested_in_products .input label span {
    position: relative;
    top: -2px;
    left: 4px
}

.form-container .frm-block ul {
    padding: 0;
}

.form-container .inputs-list li::marker {
    content: none;
}

.form-container .inputs-list:not([role="alert"]) .hs-main-font-element {
    display: none;
    text-align: center;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  margin-right: 10px;
}

.form-container .actions [type="submit"] {
	cursor: pointer;  
}

.no-scroll {
  overflow: hidden !important;
}

[data-sidenav-category-id="4406100511636"],
[data-category-id="4406100511636"] {
  display: none;
}

.breadcrumbs {
  display: none;
}

/* Form Styles Ends */

.remove-copy pre .copy-icon-wrapper,
.remove-copy code .copy-icon-wrapper {
  display: none;
}

.sdk-banner {
  display: none;
  margin-top: 20px;
}

[data-section-page-id="360013370291"] .sdk-banner,
[data-article-page-id="360018084172"] .sdk-banner {
  display: block;
}