/* Reset the box-sizing */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Body reset */

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: CabifyCircular, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(68, 48, 122, 1);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

[dir] body {
  background-color: #fff;
}

@media (min-width: 768px) {
  body {
    font-size: 19px;
  }
}

/* Reset fonts for relevant elements */

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Links */

a {
  position: relative;
  z-index: 1;
  color: rgba(113, 69, 214, 1);
  text-decoration: none;
}

a:after {
  position: absolute;
  top: 7px;
  z-index: -1;
  display: block;
  height: 14px;
  content: "";
  opacity: 0.08;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

[dir] a:after {
  background-color: #7145D6;
  transform: scaleX(0);
}

[dir="ltr"] a:after {
  right: -0.5rem;
  left: 0.5rem;
  transform-origin: 100% 50%;
}

[dir="rtl"] a:after {
  right: 0.5rem;
  left: -0.5rem;
  transform-origin: 0% 50%;
}

a:hover,
a:focus {
  /* color: #4d25a9; */
  text-decoration: none;
}

[dir] a:hover:after,
[dir] a:focus:after {
  transition-timing-function: ease;
  transform: scaleX(1);
}

[dir="ltr"] a:hover:after,
[dir="ltr"] a:focus:after {
  transform-origin: 0 50%;
}

[dir="rtl"] a:hover:after,
[dir="rtl"] a:focus:after {
  transform-origin: 100% 50%;
}

[dir] figure {
  margin: 0;
}

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

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

[dir] hr {
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #CBCBEB;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 700;
  line-height: 1.25;
}

[dir] h1,
[dir] h2,
[dir] h3,
[dir] h4,
[dir] h5,
[dir] h6,
[dir] .h1,
[dir] .h2,
[dir] .h3,
[dir] .h4,
[dir] .h5,
[dir] .h6,
[dir] p,
[dir] ul,
[dir] ol {
  margin: 0 0 24px;
}

h1,
.h1 {
  font-size: 38px;
  line-height: 44px;
}

[dir] h1,
[dir] .h1 {
  margin: 0 0 56px;
}

@media (min-width: 768px) {
  h1 {
    font-size: calc(16px * 2.5);
    line-height: 68px;
  }

  [dir] h1 {
    margin: 0 0 56px;
  }

  .h1 {
    font-size: calc(16px * 2.5);
    line-height: 68px;
  }

  [dir] .h1 {
    margin: 0 0 56px;
  }
}

h2,
.h2 {
  font-size: 28px;
}

[dir] h2,
[dir] .h2 {
  margin: 0 0 32px;
}

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

  [dir] h2 {
    margin: 0 0 56px;
  }

  .h2 {
    font-size: calc(16px * 2.2);
  }

  [dir] .h2 {
    margin: 0 0 56px;
  }
}

h3,
.h3 {
  font-size: 25px;
  line-height: 28px;
}

[dir] h3,
[dir] .h3 {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  h3 {
    font-size: calc(16px * 1.94);
    line-height: 36px;
  }

  .h3 {
    font-size: calc(16px * 1.94);
    line-height: 36px;
  }
}

h4 {
  font-size: calc(16px * 1.25);
}

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

h5 {
  font-size: calc(16px * 1.1);
}

.h5 {
  font-size: calc(16px * 1.1);
}

h6 {
  font-size: calc(16px * 1);
}

.h6 {
  font-size: calc(16px * 1);
}

b,
strong {
  font-weight: 600;
}

small,
.small {
  font-size: 80%;
  font-weight: normal;
  line-height: 1;
}

/* Description Lists */

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

dt {
  line-height: 1.5;
}

[dir] dt {
  margin-bottom: calc(16px * 1.5 / 2);
}

dd {
  line-height: 1.5;
}

[dir] dd {
  margin-bottom: calc(16px * 1.5 / 2);
}

dt {
  font-weight: bold;
}

dd {
  /* Undo browser default */
}

[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: 768px) {
  .dl-horizontal dt {
    width: 30%;
  }

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

  [dir="ltr"] .dl-horizontal dt {
    float: left;
    padding-right: 15px;
  }

  [dir="rtl"] .dl-horizontal dt {
    float: right;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .dl-horizontal dd {
    width: 70%;
  }

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

  [dir="rtl"] .dl-horizontal dd {
    float: left;
  }
}

/* Abbreviations and acronyms */

[dir] abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #818a91;
}

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

/* Blockquotes */

blockquote {
  font-family: CabifyCircular, sans-serif;
  font-style: italic;
}

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

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

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

[dir="ltr"] blockquote.is-colored {
  border-left: 5px solid rgba(113, 69, 214, 1);
}

[dir="rtl"] blockquote.is-colored {
  border-right: 5px solid rgba(113, 69, 214, 1);
}

[dir] blockquote p:last-child,
[dir] blockquote ul:last-child,
[dir] blockquote ol:last-child {
  margin-bottom: 0;
}

/* Code */

[dir] code {
  padding: 20px !important;
  border-radius: 8px !important;
}

pre {
  white-space: break-spaces;
}

/*  Addresses */

address {
  font-style: normal;
  line-height: 1.5;
}

[dir] address {
  margin-bottom: calc(16px * 1.5);
}

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

[dir] .clearfix:after {
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

[dir] .sr-only {
  padding: 0;
  margin: -1px;
  border: 0;
}

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

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

.dropdown-icon {
  display: block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

[dir] .dropdown-icon {
  background-color: inherit;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.707 10.707a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 8.586l3.293-3.293a1 1 0 111.414 1.414l-4 4z' fill='%2344307A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/*979FBD*/

[dir] header .dropdown-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.707 10.707a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 8.586l3.293-3.293a1 1 0 111.414 1.414l-4 4z' fill='%23979FBD'/%3E%3C/svg%3E");
}

[dir="ltr"] header .dropdown-icon {
  margin-left: 2px;
}

[dir="rtl"] header .dropdown-icon {
  margin-right: 2px;
}

[dir="ltr"] .rotated-90-acw {
  transform: rotate(-90deg);
}

[dir="rtl"] .rotated-90-acw {
  transform: rotate(90deg);
}

* {
  letter-spacing: -0.01em;
}

.primaryLink_icon {
  display: inline-block;
  width: 12px;
  height: 10px;
  color: currentColor;
  vertical-align: middle;
}

[dir="ltr"] .primaryLink_icon {
  margin-left: 0.25rem;
}

[dir="rtl"] .primaryLink_icon {
  margin-right: 0.25rem;
}

.primaryLink {
  display: inline;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  color: rgb(115, 80, 255);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background-size 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  /* contain: strict; */
  will-change: background-size;
}

[dir] .primaryLink {
  padding-bottom: 0.285em;
  background-image: linear-gradient(
      rgba(115, 80, 255, 0.04),
      rgba(115, 80, 255, 0.04)
    ),
    linear-gradient(rgba(115, 80, 255, 0.08), rgba(115, 80, 255, 0.08));
  background-repeat: no-repeat;
  background-size: 0 0.8571em, calc(100% - 0.57em) 0.8571em;
}

[dir="ltr"] .primaryLink {
  padding-right: 0.57em;
  background-position: right 0 top 0.57em, right 0 top 0.57em;
}

[dir="rtl"] .primaryLink {
  padding-left: 0.57em;
  background-position: left 0 top 0.57em, left 0 top 0.57em;
}

.primaryLink:hover {
  color: rgb(99, 78, 224);
}

.primaryLink:focus {
  color: rgb(99, 78, 224);
}

.primaryLink:active {
  color: rgb(99, 78, 224);
}

@media (min-width: 1023px) {
  .primaryLink {
    font-size: 19px;
  }
}

[dir] .primaryLink:active,
[dir] .primaryLink:focus,
[dir] .primaryLink:hover {
  background-position: 0.57em 0.57em, 0.57em 0.57em;
  background-size: calc(100% - 0.57em) 0.8571em, calc(100% - 0.57em) 0.8571em;
}

.primaryLink:active:after,
.primaryLink:focus:after,
.primaryLink:hover:after {
  content: none !important;
}

[dir] .banner-block {
  background: #F7F7FC;
}

.banner-block__inner {
  display: flex;
  flex-direction: column;
}

[dir] .banner-block__inner {
  padding: 48px 0;
}

@media (min-width: 1023px) {
  .banner-block__inner {
    flex-direction: row;
  }

  [dir] .banner-block__inner {
    padding: 50px 0;
  }
}

.banner-block__img {
  display: none;
}

@media (min-width: 1023px) {
  .banner-block__img {
    display: block;
    width: 25%;
  }

  [dir="ltr"] .banner-block__img {
    padding-right: 30px;
    padding-left: 30px;
  }

  [dir="rtl"] .banner-block__img {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.banner-block__text-overline {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  color: #979fbd;
  text-transform: uppercase;
  letter-spacing: 0.24px;
}

[dir] .banner-block__text-overline {
  margin-bottom: 8px;
}

.banner-block__text-description {
  max-width: 75%;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
}

@media (min-width: 1023px) {
  .banner-block__text-description {
    max-width: 370px;
    font-size: 23px;
    line-height: 32px;
  }
}

.banner-block__text {
  width: 100%;
}

[dir] .banner-block__text {
  margin-bottom: 24px;
}

@media (min-width: 1023px) {
  .banner-block__text {
    width: 41%;
  }

  [dir] .banner-block__text {
    margin-bottom: 0;
  }
}

.banner-block__controls {
  width: 100%;
}

@media (min-width: 1023px) {
  .banner-block__controls {
    width: 34%;
  }

  [dir="ltr"] .banner-block__controls {
    padding-right: 30px;
  }

  [dir="rtl"] .banner-block__controls {
    padding-left: 30px;
  }
}

.banner-block__controls .btn {
  display: block;
  max-width: 480px;
}

[dir] .banner-block__controls .btn {
  margin-bottom: 24px;
}

.language-selector a:after {
  display: none;
}

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

.dropdown-toggle {
  display: inline-block;

  font-size: 16px;
  line-height: 24px;
  color: #44307A !important;
  letter-spacing: -0.01em;
  vertical-align: middle;
}

[dir] .dropdown-toggle {
  padding: 0;
  text-align: initial;
  cursor: pointer;
  background: none;
  border: 0;
}

.dropdown-toggle:after {
  display: inline-block;
  width: 10px;
  height: 6px;
  vertical-align: middle;
  content: "";
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

[dir] .dropdown-toggle:after {
  margin-top: -3px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292894 1.70711C-0.0976312 1.31658 -0.0976312 0.683417 0.292894 0.292893C0.683418 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L5 3.58579L8.29289 0.292894C8.68342 -0.0976304 9.31658 -0.0976304 9.70711 0.292894C10.0976 0.683418 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711Z' fill='%2344307A'/%3E%3C/svg%3E%0A");
}

[dir="ltr"] .dropdown-toggle:after {
  margin-left: 3px;
}

[dir="rtl"] .dropdown-toggle:after {
  margin-right: 3px;
}

.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: 8px;
  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(16px - 5px);
  font-weight: 700;
  line-height: 1.5;
  color: rgba(68, 48, 122, 1);
  text-transform: uppercase;
}

[dir] .dropdown-toggle--user {
  padding: 0;
  border: 0;
}

/* 
Normalize non-controls

Restyle and baseline non-control form elements. 
*/

fieldset {
  /*  
  Chrome and Firefox set a `min-width: min-content;` on fieldsets, 
  so we reset that to ensure it behaves more like a standard block element
  See https:github.com/twbs/bootstrap/issues/12359. 
  */
  min-width: 0;
}

[dir] fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  font-size: calc(16px * 1.5);
  line-height: inherit;
  color: #373a3c;
}

[dir] legend {
  padding: 0;
  margin-bottom: calc(16px * 1.5);
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  font-weight: 700;
}

[dir] label {
  margin-bottom: calc(16px * 1.5 / 2);
}

/* 
 Normalize form controls

 While most of our form styles require extra classes, some basic normalization
 is required to ensure optimum display with or without those classes to better
 address browser inconsistencies. 
*/

/*  Override content-box in Normalize (* isn't specific enough) */

input[type="search"] {
  box-sizing: border-box;
}

/*  Position radios and checkboxes better */

input[type="radio"],
input[type="checkbox"] {
  line-height: normal;
}

[dir] input[type="radio"],
[dir] input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
}

/*  Set the height of file controls to match text inputs */

input[type="file"] {
  display: block;
}

/*  Make range inputs behave like textual form controls */

input[type="range"] {
  display: block;
  width: 100%;
}

/*  Make multiple select elements height not fixed */

select[multiple],
select[size] {
  height: auto;
}

/*  Focus for file, radio, and checkbox */

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*  Adjust output element */

output {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
}

[dir] output {
  padding-top: 7px;
}

/* 
 Common form controls

 Shared size and type resets for form controls. Apply `.form-control` to any
 of the following form controls:
 
*/

select {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] select {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

textarea {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] textarea {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="text"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="text"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="password"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="password"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="datetime"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="datetime"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="datetime-local"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="datetime-local"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="date"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="date"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="month"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="month"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="time"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="time"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="week"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="week"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="number"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="number"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="email"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="email"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="url"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="url"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="search"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="search"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="tel"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="tel"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

input[type="color"] {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] input[type="color"] {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

.nesty-input {
  display: block;
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #55595c;
  /*  Reset unusual Firefox-on-Android default style; see https:github.com/necolas/normalize.css/issues/214 */
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

[dir] .nesty-input {
  padding: 6px 15px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #eceeef;
  border-radius: 8px;
}

/*  Customize the `:focus` state to imitate native WebKit styles. */

select:focus {
  outline: 0;
}

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

textarea:focus {
  outline: 0;
}

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

input[type="text"]:focus {
  outline: 0;
}

[dir] input[type="text"]:focus {
  border-color: #9ed5e7;
}

input[type="password"]:focus {
  outline: 0;
}

[dir] input[type="password"]:focus {
  border-color: #9ed5e7;
}

input[type="datetime"]:focus {
  outline: 0;
}

[dir] input[type="datetime"]:focus {
  border-color: #9ed5e7;
}

input[type="datetime-local"]:focus {
  outline: 0;
}

[dir] input[type="datetime-local"]:focus {
  border-color: #9ed5e7;
}

input[type="date"]:focus {
  outline: 0;
}

[dir] input[type="date"]:focus {
  border-color: #9ed5e7;
}

input[type="month"]:focus {
  outline: 0;
}

[dir] input[type="month"]:focus {
  border-color: #9ed5e7;
}

input[type="time"]:focus {
  outline: 0;
}

[dir] input[type="time"]:focus {
  border-color: #9ed5e7;
}

input[type="week"]:focus {
  outline: 0;
}

[dir] input[type="week"]:focus {
  border-color: #9ed5e7;
}

input[type="number"]:focus {
  outline: 0;
}

[dir] input[type="number"]:focus {
  border-color: #9ed5e7;
}

input[type="email"]:focus {
  outline: 0;
}

[dir] input[type="email"]:focus {
  border-color: #9ed5e7;
}

input[type="url"]:focus {
  outline: 0;
}

[dir] input[type="url"]:focus {
  border-color: #9ed5e7;
}

input[type="search"]:focus {
  outline: 0;
}

[dir] input[type="search"]:focus {
  border-color: #9ed5e7;
}

input[type="tel"]:focus {
  outline: 0;
}

[dir] input[type="tel"]:focus {
  border-color: #9ed5e7;
}

input[type="color"]:focus {
  outline: 0;
}

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

.nesty-input:focus {
  outline: 0;
}

[dir] .nesty-input:focus {
  border-color: #9ed5e7;
}

/*  Placeholder */

select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
.nesty-input::-moz-placeholder {
  color: #616a8f;
  opacity: 1;
}

select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
.nesty-input:-ms-input-placeholder {
  color: #616a8f;
  opacity: 1;
}

select::placeholder,
textarea::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="week"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="color"]::placeholder,
.nesty-input::placeholder {
  color: #616a8f;
  opacity: 1;
}

select::-webkit-search-cancel-button,
textarea::-webkit-search-cancel-button,
input[type="text"]::-webkit-search-cancel-button,
input[type="password"]::-webkit-search-cancel-button,
input[type="datetime"]::-webkit-search-cancel-button,
input[type="datetime-local"]::-webkit-search-cancel-button,
input[type="date"]::-webkit-search-cancel-button,
input[type="month"]::-webkit-search-cancel-button,
input[type="time"]::-webkit-search-cancel-button,
input[type="week"]::-webkit-search-cancel-button,
input[type="number"]::-webkit-search-cancel-button,
input[type="email"]::-webkit-search-cancel-button,
input[type="url"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-cancel-button,
input[type="tel"]::-webkit-search-cancel-button,
input[type="color"]::-webkit-search-cancel-button,
.nesty-input::-webkit-search-cancel-button {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;

  -webkit-appearance: none;
}

[dir] select::-webkit-search-cancel-button,
[dir] textarea::-webkit-search-cancel-button,
[dir] input[type="text"]::-webkit-search-cancel-button,
[dir] input[type="password"]::-webkit-search-cancel-button,
[dir] input[type="datetime"]::-webkit-search-cancel-button,
[dir] input[type="datetime-local"]::-webkit-search-cancel-button,
[dir] input[type="date"]::-webkit-search-cancel-button,
[dir] input[type="month"]::-webkit-search-cancel-button,
[dir] input[type="time"]::-webkit-search-cancel-button,
[dir] input[type="week"]::-webkit-search-cancel-button,
[dir] input[type="number"]::-webkit-search-cancel-button,
[dir] input[type="email"]::-webkit-search-cancel-button,
[dir] input[type="url"]::-webkit-search-cancel-button,
[dir] input[type="search"]::-webkit-search-cancel-button,
[dir] input[type="tel"]::-webkit-search-cancel-button,
[dir] input[type="color"]::-webkit-search-cancel-button,
[dir] .nesty-input::-webkit-search-cancel-button {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.0976311 1.31658 -0.0976311 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L6.41421 5L9.70711 8.29289C10.0976 8.68342 10.0976 9.31658 9.70711 9.70711C9.31658 10.0976 8.68342 10.0976 8.29289 9.70711L5 6.41421L1.70711 9.70711C1.31658 10.0976 0.683417 10.0976 0.292893 9.70711C-0.0976311 9.31658 -0.0976311 8.68342 0.292893 8.29289L3.58579 5L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683417 0.292893 0.292893Z' fill='%23616A8F'/%3E%3C/svg%3E%0A");
}

[dir="ltr"] select::-webkit-search-cancel-button,
[dir="ltr"] textarea::-webkit-search-cancel-button,
[dir="ltr"] input[type="text"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="password"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="datetime"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="datetime-local"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="date"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="month"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="time"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="week"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="number"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="email"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="url"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="search"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="tel"]::-webkit-search-cancel-button,
[dir="ltr"] input[type="color"]::-webkit-search-cancel-button,
[dir="ltr"] .nesty-input::-webkit-search-cancel-button {
  right: -2px;
}

[dir="rtl"] select::-webkit-search-cancel-button,
[dir="rtl"] textarea::-webkit-search-cancel-button,
[dir="rtl"] input[type="text"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="password"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="datetime"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="datetime-local"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="date"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="month"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="time"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="week"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="number"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="email"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="url"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="search"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="tel"]::-webkit-search-cancel-button,
[dir="rtl"] input[type="color"]::-webkit-search-cancel-button,
[dir="rtl"] .nesty-input::-webkit-search-cancel-button {
  left: -2px;
}

select {
  height: calc(16px * 1.5 + 12px + 2px);
}

/*  Reset height for `textarea`s */

textarea {
  height: auto;
  height: calc((16px * 1.5 + 12px + 2px) * 3);
  resize: vertical;
}

/*  Search inputs in iOS */

/* 
 This overrides the extra rounded corners on search inputs in iOS so that our
 `.form-control` class can properly style them. Note that this cannot simply
 be added to `.form-control` as it's not specific enough. For details, see
 https:github.com/twbs/bootstrap/issues/11586. */

input[type="search"] {
  -webkit-appearance: none;
}

/*  Special styles for iOS temporal inputs

 In Mobile Safari, setting `display: block` on temporal inputs causes the
 text within the input to become vertically misaligned. As a workaround, we
 set a pixel line-height that matches the given height of the input, but only
 for Safari. */

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"] {
    line-height: calc(16px * 1.5 * 2.5);
  }
}

/*  Form groups

 Designed to help with the organization and spacing of vertical forms. For
 horizontal forms, use the predefined grid classes. */

[dir] .form-field {
  margin-bottom: calc(16px * 1.5);
}

.form-field .optional {
  color: #7054bc;
}

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

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

.form-field.boolean {
  position: relative;
}

[dir="ltr"] .form-field.boolean {
  padding-left: 20px;
}

[dir="rtl"] .form-field.boolean {
  padding-right: 20px;
}

.form-field.boolean input[type="checkbox"] {
  position: absolute;
}

[dir="ltr"] .form-field.boolean input[type="checkbox"] {
  left: 0;
}

[dir="rtl"] .form-field.boolean input[type="checkbox"] {
  right: 0;
}

.form-field.boolean label {
  min-height: calc(16px * 1.5);
  /* Ensure the input doesn't jump when there is no text */
}

[dir] .form-field.boolean label {
  margin-bottom: 0;
  cursor: pointer;
}

[dir] input[type="radio"][disabled],
[dir] input[type="radio"].disabled,
[dir] fieldset[disabled] input[type="radio"],
[dir] input[type="checkbox"][disabled],
[dir] input[type="checkbox"].disabled,
[dir] fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/*  Help text

 Apply to any element you wish to create light text for placement immediately
 below a form control. Use for general help, formatting, or instructional text. */

.form-field p,
.help-block {
  display: block; /* account for any element using help-block */
  font-size: 90%;
  color: #8067c3; /* lighten the text some for contrast */
}

[dir] .form-field p,
[dir] .help-block {
  margin-top: 10px;
  margin-bottom: 15px;
}

/* ==========================================================================
  Buttons
  ========================================================================== */

.btn,
input[type="submit"],
.section-subscribe button,
.article-subscribe button,
.community-follow button,
.requests-table-toolbar .organization-subscribe button,
.subscriptions-subscribe button,
.edit-profile-button a,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.1px;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.5s ease;
  touch-action: manipulation;
}

[dir] .btn,
[dir] input[type="submit"],
[dir] .section-subscribe button,
[dir] .article-subscribe button,
[dir] .community-follow button,
[dir] .requests-table-toolbar .organization-subscribe button,
[dir] .subscriptions-subscribe button,
[dir] .edit-profile-button a,
[dir] .pagination-next-link,
[dir] .pagination-prev-link,
[dir] .pagination-first-link,
[dir] .pagination-last-link {
  padding: 10px 24px;
  margin-bottom: 0;
  text-align: center;
  cursor: pointer;
  background-image: none;
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 0px 1px 2px rgba(33, 34, 64, 0.08),
    0px 0px 4px rgba(33, 34, 64, 0.16);
}

@media (min-width: 768px) {
  [dir] .btn,
  [dir] input[type="submit"],
  [dir] .section-subscribe button,
  [dir] .article-subscribe button,
  [dir] .community-follow button,
  [dir] .requests-table-toolbar .organization-subscribe button,
  [dir] .subscriptions-subscribe button,
  [dir] .edit-profile-button a,
  [dir] .pagination-next-link,
  [dir] .pagination-prev-link,
  [dir] .pagination-first-link,
  [dir] .pagination-last-link {
    padding: 14px 24px;
  }
}

.btn:focus,
.btn:active:focus,
input[type="submit"]:focus,
input[type="submit"]:active:focus,
.section-subscribe button:focus,
.section-subscribe button:active:focus,
.article-subscribe button:focus,
.article-subscribe button:active:focus,
.community-follow button:focus,
.community-follow button:active:focus,
.requests-table-toolbar .organization-subscribe button:focus,
.requests-table-toolbar .organization-subscribe button:active:focus,
.subscriptions-subscribe button:focus,
.subscriptions-subscribe button:active:focus,
.edit-profile-button a:focus,
.edit-profile-button a:active:focus,
.pagination-next-link:focus,
.pagination-next-link:active:focus,
.pagination-prev-link:focus,
.pagination-prev-link:active:focus,
.pagination-first-link:focus,
.pagination-first-link:active:focus,
.pagination-last-link:focus,
.pagination-last-link:active:focus {
  outline: none;
}

.btn:hover,
.btn:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.section-subscribe button:hover,
.section-subscribe button:focus,
.article-subscribe button:hover,
.article-subscribe button:focus,
.community-follow button:hover,
.community-follow button:focus,
.requests-table-toolbar .organization-subscribe button:hover,
.requests-table-toolbar .organization-subscribe button:focus,
.subscriptions-subscribe button:hover,
.subscriptions-subscribe button:focus,
.edit-profile-button a:hover,
.edit-profile-button a:focus,
.pagination-next-link:hover,
.pagination-next-link:focus,
.pagination-prev-link:hover,
.pagination-prev-link:focus,
.pagination-first-link:hover,
.pagination-first-link:focus,
.pagination-last-link:hover,
.pagination-last-link:focus {
  text-decoration: none;
}

[dir] .btn:hover,
[dir] .btn:focus,
[dir] input[type="submit"]:hover,
[dir] input[type="submit"]:focus,
[dir] .section-subscribe button:hover,
[dir] .section-subscribe button:focus,
[dir] .article-subscribe button:hover,
[dir] .article-subscribe button:focus,
[dir] .community-follow button:hover,
[dir] .community-follow button:focus,
[dir] .requests-table-toolbar .organization-subscribe button:hover,
[dir] .requests-table-toolbar .organization-subscribe button:focus,
[dir] .subscriptions-subscribe button:hover,
[dir] .subscriptions-subscribe button:focus,
[dir] .edit-profile-button a:hover,
[dir] .edit-profile-button a:focus,
[dir] .pagination-next-link:hover,
[dir] .pagination-next-link:focus,
[dir] .pagination-prev-link:hover,
[dir] .pagination-prev-link:focus,
[dir] .pagination-first-link:hover,
[dir] .pagination-first-link:focus,
[dir] .pagination-last-link:hover,
[dir] .pagination-last-link:focus {
  background-color: #8C5CFF;
  border-color: #8C5CFF;
  box-shadow: 0px 2px 8px rgba(33, 34, 64, 0.16),
    0px 0px 4px rgba(33, 34, 64, 0.08);
}

.btn:active,
input[type="submit"]:active,
.section-subscribe button:active,
.article-subscribe button:active,
.community-follow button:active,
.requests-table-toolbar .organization-subscribe button:active,
.subscriptions-subscribe button:active,
.edit-profile-button a:active,
.pagination-next-link:active,
.pagination-prev-link:active,
.pagination-first-link:active,
.pagination-last-link:active {
  outline: none;
}

[dir] .btn:active,
[dir] input[type="submit"]:active,
[dir] .section-subscribe button:active,
[dir] .article-subscribe button:active,
[dir] .community-follow button:active,
[dir] .requests-table-toolbar .organization-subscribe button:active,
[dir] .subscriptions-subscribe button:active,
[dir] .edit-profile-button a:active,
[dir] .pagination-next-link:active,
[dir] .pagination-prev-link:active,
[dir] .pagination-first-link:active,
[dir] .pagination-last-link:active {
  background-color: #5B39A8;
  background-image: none;
  border-color: #5B39A8;
  box-shadow: 0px 1px 2px rgba(33, 34, 64, 0.08),
    0px 0px 4px rgba(33, 34, 64, 0.16);
}

.btn--default,
.section-subscribe button,
.article-subscribe button,
.community-follow button,
.requests-table-toolbar .organization-subscribe button,
.subscriptions-subscribe button,
.edit-profile-button a,
.pagination-next-link,
.pagination-prev-link,
.pagination-first-link,
.pagination-last-link {
  color: #fff;
}

[dir] .btn--default,
[dir] .section-subscribe button,
[dir] .article-subscribe button,
[dir] .community-follow button,
[dir] .requests-table-toolbar .organization-subscribe button,
[dir] .subscriptions-subscribe button,
[dir] .edit-profile-button a,
[dir] .pagination-next-link,
[dir] .pagination-prev-link,
[dir] .pagination-first-link,
[dir] .pagination-last-link {
  background-color: rgba(113, 69, 214, 1);
  border-color: rgba(113, 69, 214, 1);
}

.btn--default:focus,
.btn--default:active,
.section-subscribe button:focus,
.section-subscribe button:active,
.article-subscribe button:focus,
.article-subscribe button:active,
.community-follow button:focus,
.community-follow button:active,
.requests-table-toolbar .organization-subscribe button:focus,
.requests-table-toolbar .organization-subscribe button:active,
.subscriptions-subscribe button:focus,
.subscriptions-subscribe button:active,
.edit-profile-button a:focus,
.edit-profile-button a:active,
.pagination-next-link:focus,
.pagination-next-link:active,
.pagination-prev-link:focus,
.pagination-prev-link:active,
.pagination-first-link:focus,
.pagination-first-link:active,
.pagination-last-link:focus,
.pagination-last-link:active {
  /* color: #5328b6;
    background-color: transparent;
    border-color: #5328b6; */
}

input[type="submit"],
.btn--primary {
  color: #fff;
}

[dir] input[type="submit"],
[dir] .btn--primary {
  background-color: rgba(113, 69, 214, 1);
  border-color: rgba(113, 69, 214, 1);
}

[dir] input[type="submit"]:hover,
[dir] .btn--primary:hover {
  background-color: #8C5CFF;
  border-color: #8C5CFF;
  box-shadow: 0px 2px 8px rgba(33, 34, 64, 0.16),
    0px 0px 4px rgba(33, 34, 64, 0.08);
}

input[type="submit"]:focus,
input[type="submit"]:active,
.btn--primary:focus,
.btn--primary:active {
  color: #fff;
}

[dir] input[type="submit"]:focus,
[dir] input[type="submit"]:active,
[dir] .btn--primary:focus,
[dir] .btn--primary:active {
  background-color: #5B39A8;
  border-color: #5B39A8;
  box-shadow: 0px 1px 2px rgba(33, 34, 64, 0.08),
    0px 0px 4px rgba(33, 34, 64, 0.16);
}

.btn--topbar {
  color: rgba(68, 48, 122, 1);
}

[dir] .btn--topbar {
  background-color: transparent;
  border-color: rgba(68, 48, 122, 1);
}

.btn--topbar:hover,
.btn--topbar:focus,
.btn--topbar:active {
  color: #2c1f4e;
}

[dir] .btn--topbar:hover,
[dir] .btn--topbar:focus,
[dir] .btn--topbar:active {
  background-color: transparent;
  border-color: #2c1f4e;
}

.edit-profile-button a {
  color: rgba(113, 69, 214, 1);
}

[dir] .edit-profile-button a {
  background-color: transparent;
  border-color: rgba(113, 69, 214, 1);
}

.edit-profile-button a:hover,
.edit-profile-button a:focus,
.edit-profile-button a:active {
  color: #5328b6;
}

[dir] .edit-profile-button a:hover,
[dir] .edit-profile-button a:focus,
[dir] .edit-profile-button a:active {
  background-color: darken(transparent, 12%);
  border-color: #5328b6;
}

[dir] .edit-profile-button a:active {
  background-image: none;
}

.edit-profile-button a:hover {
  opacity: 0.8;
}

[dir="ltr"] .container {
  padding-right: 15px;
  padding-left: 15px;
}

[dir="rtl"] .container {
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  [dir="ltr"] .container {
    padding-right: calc(15px * 2);
    padding-left: calc(15px * 2);
  }

  [dir="rtl"] .container {
    padding-right: calc(15px * 2);
    padding-left: calc(15px * 2);
  }
}

.container-inner {
  max-width: 1200px;
}

[dir] .container-inner {
  margin: 0 auto;
}

[dir] .container--dark {
  padding-top: 48px;
  padding-bottom: 64px;
  margin-top: 48px;
  background-color: #F7F7FC;
}

@media (min-width: 1023px) {
  [dir] .container--dark {
    padding-top: 72px;
    padding-bottom: 67px;
    margin-top: 96px;
  }
}

.container--grey {
  /* margin-top: 168px; */
}

[dir] .container--grey {
  background-color: #F7F7FC;
}

[dir="ltr"] .row {
  margin-right: calc(15px * -1);
  margin-left: calc(15px * -1);
}

[dir="rtl"] .row {
  margin-right: calc(15px * -1);
  margin-left: calc(15px * -1);
}

.column {
  position: relative;
  width: 100%;
  min-height: 1px;
}

[dir="ltr"] .column {
  float: left;
  padding-right: 15px;
  padding-left: 15px;
}

[dir="rtl"] .column {
  float: right;
  padding-right: 15px;
  padding-left: 15px;
}

.column--xs-1 {
  width: 8.33333%;
}

.column--xs-2 {
  width: 16.66667%;
}

.column--xs-3 {
  width: 25%;
}

.column--xs-4 {
  width: 33.33333%;
}

.column--xs-5 {
  width: 41.66667%;
}

.column--xs-6 {
  width: 50%;
}

.column--xs-7 {
  width: 58.33333%;
}

.column--xs-8 {
  width: 66.66667%;
}

.column--xs-9 {
  width: 75%;
}

.column--xs-10 {
  width: 83.33333%;
}

.column--xs-11 {
  width: 91.66667%;
}

.column--xs-12 {
  width: 100%;
}

[dir="ltr"] .column--xs-offset-0 {
  margin-left: 0%;
}

[dir="rtl"] .column--xs-offset-0 {
  margin-right: 0%;
}

[dir="ltr"] .column--xs-offset-1 {
  margin-left: 8.33333%;
}

[dir="rtl"] .column--xs-offset-1 {
  margin-right: 8.33333%;
}

[dir="ltr"] .column--xs-offset-2 {
  margin-left: 16.66667%;
}

[dir="rtl"] .column--xs-offset-2 {
  margin-right: 16.66667%;
}

[dir="ltr"] .column--xs-offset-3 {
  margin-left: 25%;
}

[dir="rtl"] .column--xs-offset-3 {
  margin-right: 25%;
}

[dir="ltr"] .column--xs-offset-4 {
  margin-left: 33.33333%;
}

[dir="rtl"] .column--xs-offset-4 {
  margin-right: 33.33333%;
}

[dir="ltr"] .column--xs-offset-5 {
  margin-left: 41.66667%;
}

[dir="rtl"] .column--xs-offset-5 {
  margin-right: 41.66667%;
}

[dir="ltr"] .column--xs-offset-6 {
  margin-left: 50%;
}

[dir="rtl"] .column--xs-offset-6 {
  margin-right: 50%;
}

[dir="ltr"] .column--xs-offset-7 {
  margin-left: 58.33333%;
}

[dir="rtl"] .column--xs-offset-7 {
  margin-right: 58.33333%;
}

[dir="ltr"] .column--xs-offset-8 {
  margin-left: 66.66667%;
}

[dir="rtl"] .column--xs-offset-8 {
  margin-right: 66.66667%;
}

[dir="ltr"] .column--xs-offset-9 {
  margin-left: 75%;
}

[dir="rtl"] .column--xs-offset-9 {
  margin-right: 75%;
}

[dir="ltr"] .column--xs-offset-10 {
  margin-left: 83.33333%;
}

[dir="rtl"] .column--xs-offset-10 {
  margin-right: 83.33333%;
}

[dir="ltr"] .column--xs-offset-11 {
  margin-left: 91.66667%;
}

[dir="rtl"] .column--xs-offset-11 {
  margin-right: 91.66667%;
}

[dir="ltr"] .column--xs-offset-12 {
  margin-left: 100%;
}

[dir="rtl"] .column--xs-offset-12 {
  margin-right: 100%;
}

@media (min-width: 768px) {
  .column--sm-1 {
    width: 8.33333%;
  }

  .column--sm-2 {
    width: 16.66667%;
  }

  .column--sm-3 {
    width: 25%;
  }

  .column--sm-4 {
    width: 33.33333%;
  }

  .column--sm-5 {
    width: 41.66667%;
  }

  .column--sm-6 {
    width: 50%;
  }

  .column--sm-7 {
    width: 58.33333%;
  }

  .column--sm-8 {
    width: 66.66667%;
  }

  .column--sm-9 {
    width: 75%;
  }

  .column--sm-10 {
    width: 83.33333%;
  }

  .column--sm-11 {
    width: 91.66667%;
  }

  .column--sm-12 {
    width: 100%;
  }

  [dir="ltr"] .column--sm-offset-0 {
    margin-left: 0%;
  }

  [dir="rtl"] .column--sm-offset-0 {
    margin-right: 0%;
  }

  [dir="ltr"] .column--sm-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--sm-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--sm-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--sm-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--sm-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--sm-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--sm-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--sm-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--sm-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--sm-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--sm-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--sm-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--sm-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--sm-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--sm-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--sm-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--sm-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--sm-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--sm-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--sm-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--sm-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--sm-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--sm-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--sm-offset-12 {
    margin-right: 100%;
  }
}

@media (min-width: 1023px) {
  .column--md-1 {
    width: 8.33333%;
  }

  .column--md-2 {
    width: 16.66667%;
  }

  .column--md-3 {
    width: 25%;
  }

  .column--md-4 {
    width: 33.33333%;
  }

  .column--md-5 {
    width: 41.66667%;
  }

  .column--md-6 {
    width: 50%;
  }

  .column--md-7 {
    width: 58.33333%;
  }

  .column--md-8 {
    width: 66.66667%;
  }

  .column--md-9 {
    width: 75%;
  }

  .column--md-10 {
    width: 83.33333%;
  }

  .column--md-11 {
    width: 91.66667%;
  }

  .column--md-12 {
    width: 100%;
  }

  [dir="ltr"] .column--md-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--md-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--md-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--md-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--md-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--md-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--md-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--md-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--md-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--md-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--md-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--md-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--md-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--md-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--md-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--md-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--md-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--md-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--md-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--md-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--md-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--md-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--md-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--md-offset-12 {
    margin-right: 100%;
  }
}

@media (min-width: 1200px) {
  .column--lg-1 {
    width: 8.33333%;
  }

  .column--lg-2 {
    width: 16.66667%;
  }

  .column--lg-3 {
    width: 25%;
  }

  .column--lg-4 {
    width: 33.33333%;
  }

  .column--lg-5 {
    width: 41.66667%;
  }

  .column--lg-6 {
    width: 50%;
  }

  .column--lg-7 {
    width: 58.33333%;
  }

  .column--lg-8 {
    width: 66.66667%;
  }

  .column--lg-9 {
    width: 75%;
  }

  .column--lg-10 {
    width: 83.33333%;
  }

  .column--lg-11 {
    width: 91.66667%;
  }

  .column--lg-12 {
    width: 100%;
  }

  [dir="ltr"] .column--lg-pull-0 {
    right: auto;
  }

  [dir="rtl"] .column--lg-pull-0 {
    left: auto;
  }

  [dir="ltr"] .column--lg-pull-1 {
    right: 8.33333%;
  }

  [dir="rtl"] .column--lg-pull-1 {
    left: 8.33333%;
  }

  [dir="ltr"] .column--lg-pull-2 {
    right: 16.66667%;
  }

  [dir="rtl"] .column--lg-pull-2 {
    left: 16.66667%;
  }

  [dir="ltr"] .column--lg-pull-3 {
    right: 25%;
  }

  [dir="rtl"] .column--lg-pull-3 {
    left: 25%;
  }

  [dir="ltr"] .column--lg-pull-4 {
    right: 33.33333%;
  }

  [dir="rtl"] .column--lg-pull-4 {
    left: 33.33333%;
  }

  [dir="ltr"] .column--lg-pull-5 {
    right: 41.66667%;
  }

  [dir="rtl"] .column--lg-pull-5 {
    left: 41.66667%;
  }

  [dir="ltr"] .column--lg-pull-6 {
    right: 50%;
  }

  [dir="rtl"] .column--lg-pull-6 {
    left: 50%;
  }

  [dir="ltr"] .column--lg-pull-7 {
    right: 58.33333%;
  }

  [dir="rtl"] .column--lg-pull-7 {
    left: 58.33333%;
  }

  [dir="ltr"] .column--lg-pull-8 {
    right: 66.66667%;
  }

  [dir="rtl"] .column--lg-pull-8 {
    left: 66.66667%;
  }

  [dir="ltr"] .column--lg-pull-9 {
    right: 75%;
  }

  [dir="rtl"] .column--lg-pull-9 {
    left: 75%;
  }

  [dir="ltr"] .column--lg-pull-10 {
    right: 83.33333%;
  }

  [dir="rtl"] .column--lg-pull-10 {
    left: 83.33333%;
  }

  [dir="ltr"] .column--lg-pull-11 {
    right: 91.66667%;
  }

  [dir="rtl"] .column--lg-pull-11 {
    left: 91.66667%;
  }

  [dir="ltr"] .column--lg-pull-12 {
    right: 100%;
  }

  [dir="rtl"] .column--lg-pull-12 {
    left: 100%;
  }

  [dir="ltr"] .column--lg-push-0 {
    left: auto;
  }

  [dir="rtl"] .column--lg-push-0 {
    right: auto;
  }

  [dir="ltr"] .column--lg-push-1 {
    left: 8.33333%;
  }

  [dir="rtl"] .column--lg-push-1 {
    right: 8.33333%;
  }

  [dir="ltr"] .column--lg-push-2 {
    left: 16.66667%;
  }

  [dir="rtl"] .column--lg-push-2 {
    right: 16.66667%;
  }

  [dir="ltr"] .column--lg-push-3 {
    left: 25%;
  }

  [dir="rtl"] .column--lg-push-3 {
    right: 25%;
  }

  [dir="ltr"] .column--lg-push-4 {
    left: 33.33333%;
  }

  [dir="rtl"] .column--lg-push-4 {
    right: 33.33333%;
  }

  [dir="ltr"] .column--lg-push-5 {
    left: 41.66667%;
  }

  [dir="rtl"] .column--lg-push-5 {
    right: 41.66667%;
  }

  [dir="ltr"] .column--lg-push-6 {
    left: 50%;
  }

  [dir="rtl"] .column--lg-push-6 {
    right: 50%;
  }

  [dir="ltr"] .column--lg-push-7 {
    left: 58.33333%;
  }

  [dir="rtl"] .column--lg-push-7 {
    right: 58.33333%;
  }

  [dir="ltr"] .column--lg-push-8 {
    left: 66.66667%;
  }

  [dir="rtl"] .column--lg-push-8 {
    right: 66.66667%;
  }

  [dir="ltr"] .column--lg-push-9 {
    left: 75%;
  }

  [dir="rtl"] .column--lg-push-9 {
    right: 75%;
  }

  [dir="ltr"] .column--lg-push-10 {
    left: 83.33333%;
  }

  [dir="rtl"] .column--lg-push-10 {
    right: 83.33333%;
  }

  [dir="ltr"] .column--lg-push-11 {
    left: 91.66667%;
  }

  [dir="rtl"] .column--lg-push-11 {
    right: 91.66667%;
  }

  [dir="ltr"] .column--lg-push-12 {
    left: 100%;
  }

  [dir="rtl"] .column--lg-push-12 {
    right: 100%;
  }

  [dir="ltr"] .column--lg-offset-0 {
    margin-left: 0%;
  }

  [dir="rtl"] .column--lg-offset-0 {
    margin-right: 0%;
  }

  [dir="ltr"] .column--lg-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--lg-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--lg-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--lg-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--lg-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--lg-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--lg-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--lg-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--lg-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--lg-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--lg-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--lg-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--lg-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--lg-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--lg-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--lg-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--lg-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--lg-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--lg-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--lg-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--lg-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--lg-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--lg-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--lg-offset-12 {
    margin-right: 100%;
  }
}

.logo-wrapper {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  [dir] .logo-wrapper {
    padding: 14px 0;
  }
}

.logo img {
  display: block;
  max-height: 33px !important;
}

@media (max-width: 1024px) {
  .logo img {
    height: 28px !important;
  }
}

.layout {
  display: flex;
  height: 100%;
  flex-direction: column;
}

[dir] .layout {
  background-color: #fff;
}

.layout__main {
  width: 100%;
  flex: 1 0 auto;
}

[dir] .layout__main {
  margin-top: 24px;
}

.layout__main:after {
  display: block;
  height: 0;
  visibility: hidden;
  content: "\00a0";
}

.layout__header,
.layout__footer {
  flex: none;
}

.topbar {
  width: 100%;
  /* margin-bottom: calc(var(--line-height-computed)); */
  color: rgba(68, 48, 122, 1);
}

[dir] .topbar {
  background-color: #fff;
  border-color: rgba(228, 228, 247, 1);
  border-style: solid;
  border-width: 0;
}

@media (min-width: 1023px) {
  .topbar {
    /* margin-bottom: calc(var(--line-height-computed) * 2); */
  }
}

[dir] .topbar--bordered {
  border-color: rgba(228, 228, 247, 1) transparent #eee transparent;
  border-style: solid;
  border-width: 4px 0 1px;
}

.topbar__inner {
  width: 100%;
}

[dir] .topbar__inner {
  margin: 0 auto;
}

@media (min-width: 1023px) {
  .topbar__inner {
    display: table;
  }

  [dir] .topbar__inner {
    box-shadow: inset 0 -1px 0 0 #E4E4F7;
  }
}

.topbar__col {
  position: relative;
}

[dir] .topbar__col {
  padding: 0;
}

@media (min-width: 1023px) {
  .topbar__col {
    display: table-cell;
    vertical-align: middle;
  }
}

.topbar__controls {
  display: flex;
  font-size: 16px;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1023px) {
  .topbar__controls {
    display: block;
    /* flex-direction: row;
    align-items: center; */
  }

  [dir="ltr"] .topbar__controls {
    float: right;
  }

  [dir="rtl"] .topbar__controls {
    float: left;
  }
}

@media (max-width: 767px) {
  [dir] .topbar__controls > * + * {
    margin-top: 16px;
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .topbar__controls > * + * {
    margin-left: 16px;
  }

  [dir="rtl"] .topbar__controls > * + * {
    margin-right: 16px;
  }
}

@media (max-width: 1024px) {
  .topbar__collapse {
    position: absolute;
    z-index: 2;
    display: none;
    width: calc(100% + 60px);
  }

  [dir] .topbar__collapse {
    background-color: #F7F7FC;
  }

  [dir="ltr"] .topbar__collapse {
    left: -30px;
  }

  [dir="rtl"] .topbar__collapse {
    right: -30px;
  }
}

@media (max-width: 767px) {
  .topbar__collapse {
    position: absolute;
    z-index: 2;
    width: calc(100% + 30px);
  }

  [dir] .topbar__collapse {
    background-color: #F7F7FC;
  }

  [dir="ltr"] .topbar__collapse {
    left: -15px;
  }

  [dir="rtl"] .topbar__collapse {
    right: -15px;
  }
}

@media (min-width: 1023px) {
  .topbar__collapse {
    display: block !important;
  }
}

.topbar__collapse .header__links {
  display: flex;
  flex-direction: column;
}

[dir] .topbar__collapse .header__links {
  padding: 0 16px;
}

.topbar__collapse .header__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

[dir] .topbar__collapse .header__links a {
  padding: 1.5rem 0;
  border-bottom: 1px solid #E4E4F7;
}

[dir="ltr"] .topbar__collapse .header__links a {
  margin-right: 0;
}

[dir="rtl"] .topbar__collapse .header__links a {
  margin-left: 0;
}

.topbar__collapse .header__links a:after {
  display: none !important;
}

[dir="ltr"] .topbar__collapse .header__link {
  margin-right: 0;
}

[dir="rtl"] .topbar__collapse .header__link {
  margin-left: 0;
}

[dir] .topbar__collapse .header__link:last-child a {
  border-bottom: none;
}

@media (max-width: 767px) {
  [dir] .topbar__menu {
    padding: 0;
  }
}

@media (min-width: 1023px) {
  [dir] .topbar__col {
    padding: 16px 0;
  }
}

.header__links {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
}

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

.header__link {
  display: inline-block;
  vertical-align: middle;
}

[dir="ltr"] .header__link {
  margin-right: 40px;
}

[dir="rtl"] .header__link {
  margin-left: 40px;
}

.header__link a {
  font-size: 16px;
  line-height: 24px;
  color: #44307A;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 1023px) {
  .visible-mobile {
    display: none !important;
  }
}

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

.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(113, 69, 214, 1);
  border: 2px solid #fff;
  border-radius: 100%;
}

[dir="ltr"] .avatar--agent:before {
  right: -4px;
}

[dir="rtl"] .avatar--agent:before {
  left: -4px;
}

[dir] .user-avatar {
  border-radius: 100%;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

.user-avatar--topbar {
  width: 32px;
  height: 32px;
}

[dir="ltr"] .user-avatar--topbar {
  margin-right: 8px;
}

[dir="rtl"] .user-avatar--topbar {
  margin-left: 8px;
}

.lines-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: 0.3s;
}

[dir] .lines-button {
  padding: 3px 7.5px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.lines-button a:after {
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 1024px) {
  [dir] .lines-button {
    padding: 16px 30px;
  }

  [dir="ltr"] .lines-button {
    float: right;
    margin-right: -30px;
  }

  [dir="rtl"] .lines-button {
    float: left;
    margin-left: -30px;
  }
}

@media (max-width: 767px) {
  [dir] .lines-button {
    padding: 16px 15px;
  }

  [dir="ltr"] .lines-button {
    float: right;
    margin-right: -15px;
  }

  [dir="rtl"] .lines-button {
    float: left;
    margin-left: -15px;
  }
}

@media (min-width: 1023px) {
  .lines-button {
    display: none;
  }
}

.lines-button:hover {
  opacity: 1;
}

.lines-button:active {
  outline: 0;
  transition: 0;
}

[dir] .lines-button:active {
  box-shadow: none;
}

.lines-button:focus {
  outline: 0;
}

/*common to all three-liners */

.lines,
.lines:before,
.lines:after {
  display: inline-block;
  width: 30px;
  height: 2px;
  transition: 0.3s;
}

[dir] .lines,
[dir] .lines:before,
[dir] .lines:after {
  background: rgba(68, 48, 122, 1);
  border-radius: 2px;
}

.lines {
  position: relative;
}

.lines:before,
.lines:after {
  position: absolute;
  content: "";
}

[dir="ltr"] .lines:before,
[dir="ltr"] .lines:after {
  left: 0;
  transform-origin: calc(30px / 14) center;
}

[dir="rtl"] .lines:before,
[dir="rtl"] .lines:after {
  right: 0;
  transform-origin: calc(100% - (30px / 14)) center;
}

.lines:before {
  top: 7.5px;
}

.lines:after {
  top: -7.5px;
}

.lines-button.is-active {
  /* transform: scale3d(0.8, 0.8, 0.8); */
}

[dir] .lines-button.is-active {
  background: #F7F7FC;
}

[dir="ltr"] .lines-button.is-active a:after {
  transform: rotate(-180deg);
}

[dir="rtl"] .lines-button.is-active a:after {
  transform: rotate(180deg);
}

[dir] .lines-button.is-active .lines {
  background: transparent;
}

.lines-button.is-active .lines:before,
.lines-button.is-active .lines:after {
  top: 0;
  width: 30px;
}

[dir] .lines-button.is-active .lines:before,
[dir] .lines-button.is-active .lines:after {
  transform-origin: 50% 50%;
}

[dir="ltr"] .lines-button.is-active .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}

[dir="rtl"] .lines-button.is-active .lines:before {
  transform: rotate3d(0, 0, 1, -45deg);
}

[dir="ltr"] .lines-button.is-active .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

[dir="rtl"] .lines-button.is-active .lines:after {
  transform: rotate3d(0, 0, 1, 45deg);
}

.help-center-name {
  display: inline-block;

  font-size: 19px;
  font-weight: bold;
  line-height: 28px;
  color: #44307A;
  letter-spacing: -0.01em;
  vertical-align: middle;
}

[dir="ltr"] .help-center-name {
  margin: 0 0 0 32px;
}

[dir="rtl"] .help-center-name {
  margin: 0 32px 0 0;
}

@media (max-width: 767px) {
  .help-center-name {
    /* display: none; */
    font-size: 16px;
  }

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

  [dir="rtl"] .help-center-name {
    margin-right: 10px;
  }
}

.hero-bg {
  position: absolute;
  top: -10%;
  z-index: 1;
  width: 100%;
  height: 150%;
}

[dir] .hero-bg {
  background-image: url(/hc/theming_assets/01HZM7KHRD5KM1ZT05PYX294MT);
  background-repeat: no-repeat;
  background-position: 50% 40%;
  background-size: cover;
}

[dir="ltr"] .hero-bg {
  left: 0;
}

[dir="rtl"] .hero-bg {
  right: 0;
}

.hero-unit {
  position: relative;
  /* margin-top: calc(var(--line-height-computed) * -1); */
  /* margin-bottom: calc(var(--line-height-computed) * 2); */
  overflow: hidden;
}

[dir] .hero-unit {
  padding: 16px 15px 56px;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 768px) {
  .hero-unit {
    /* margin-top: calc((var(--line-height-computed) * -2) - 1px); */
  }

  [dir] .hero-unit {
    padding-top: 160px;
    padding-bottom: 112px;
  }
}

.hero-unit:after {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 1;
}

[dir] .hero-unit:after {
  background-color: #fff;
}

[dir="ltr"] .hero-unit:after {
  left: 0;
}

[dir="rtl"] .hero-unit:after {
  right: 0;
}

@media (min-width: 768px) {
  .homepage .hero-unit {
    /* margin-top: calc((var(--line-height-computed) * -2) - 1px); */
  }

  [dir] .homepage .hero-unit {
    padding-top: 190px;
    padding-bottom: 190px;
  }
}

[dir] .homepage .container--dark {
  margin-top: 0;
}

@media (min-width: 768px) {
  .homepage .container--dark .container-inner {
    position: relative;
    z-index: 3;
  }

  [dir] .homepage .container--dark .container-inner {
    margin-top: -306px;
  }
}

.help-center-title {
  position: relative;
  position: absolute;
  top: 0px;
  z-index: 2;
  display: none;
  font-size: 19px;
  font-weight: bold;
  line-height: 28px;
}

@media (min-width: 768px) {
  .help-center-title {
    display: block;
  }
}

.help-center-title img {
  width: 24px;
  height: 24px;
}

[dir="ltr"] .help-center-title img {
  margin-left: 8px;
}

[dir="rtl"] .help-center-title img {
  margin-right: 8px;
}

.intro-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
  /* color: #fff; */
}

[dir] .intro-title {
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 1023px) {
  .intro-title {
    font-size: 50px;
    line-height: 68px;
  }

  [dir] .intro-title {
    margin-bottom: 20px;
  }
}

/* Search */

.search {
  position: relative;
}

.search:before {
  position: absolute;
  top: 50%;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  color: #616a8f;
  content: "\f002";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir] .search:before {
  margin-top: -9px;
}

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

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

[dir] .searchbox {
  margin-top: calc(16px * 1.5);
}

.searchbox-suggestions ul {
  list-style: none;
}

[dir] .searchbox-suggestions ul {
  margin-bottom: calc(16px * 1.5);
}

[dir="ltr"] .searchbox-suggestions ul {
  padding-left: 0;
}

[dir="rtl"] .searchbox-suggestions ul {
  padding-right: 0;
}

[dir] .searchbox-suggestions li {
  margin-bottom: calc(16px * 1.5 / 3);
}

.search-box {
  position: relative;
}

.search-box #query {
  transition: border 0.5s ease;
}

[dir] .search-box #query {
  background-color: #F7F7FC;
  border-color: #F7F7FC;
}

[dir="ltr"] .search-box #query {
  padding-left: 48px;
}

[dir="rtl"] .search-box #query {
  padding-right: 48px;
}

.search-box--hero-unit {
  z-index: 2;
  max-width: 790px;
  opacity: 1 !important;
  transition: top 0.5s ease;
}

[dir] .search-box--hero-unit {
  margin: 0 auto;
}

.search-box--hero-unit .search {
  display: flex;
  max-width: 510px;
}

[dir="ltr"] .search-box--hero-unit .search {
  margin-right: auto;
  margin-left: auto;
}

[dir="rtl"] .search-box--hero-unit .search {
  margin-right: auto;
  margin-left: auto;
}

.search-box--hero-unit .search:before {
  font-size: 14px;
}

[dir] .search-box--hero-unit .search:before {
  margin-top: -7px;
}

[dir="ltr"] .search-box--hero-unit .search:before {
  left: 17px;
}

[dir="rtl"] .search-box--hero-unit .search:before {
  right: 17px;
}

@media (min-width: 1023px) {
  .search-box--hero-unit .search:before {
    display: none;
  }
}

.search-box--hero-unit #query {
  height: 40px;
  font-size: 16px;
  /* background-color: rgba(255, 255, 255, 0.9); */
  /* border-color: #fff; */
  transition: border 0.5s ease, background-color 0.5s ease;
}

[dir] .search-box--hero-unit #query {
  padding: 0 16px;
}

@media (max-width: 1024px) {
  [dir="ltr"] .search-box--hero-unit #query {
    padding-left: 48px;
  }

  [dir="rtl"] .search-box--hero-unit #query {
    padding-right: 48px;
  }
}

.search-box--hero-unit #query:focus {
  /* background-color: #fff; */
}

@media (min-width: 1023px) {
  .search-box--hero-unit #query {
    height: 56px;
  }
}

.search-box--hero-unit input[type="submit"] {
  display: inline-block;
  height: 56px;
  font-size: 20px;
  line-height: 28px;
  text-transform: none;
  letter-spacing: -0.2px;
  flex-shrink: 0;
}

[dir="ltr"] .search-box--hero-unit input[type="submit"] {
  padding-right: 24px;
  padding-left: 24px;
  margin-left: 16px;
}

[dir="rtl"] .search-box--hero-unit input[type="submit"] {
  padding-right: 24px;
  padding-left: 24px;
  margin-right: 16px;
}

@media (max-width: 1024px) {
  .search-box--hero-unit input[type="submit"] {
    display: none;
  }
}

.search-box--small {
  max-width: 320px;
}

[dir] .search-box--small {
  margin-top: -6px;
  margin-bottom: 66px;
}

[dir="ltr"] .search-box--small {
  margin-left: auto;
}

[dir="rtl"] .search-box--small {
  margin-right: auto;
}

.custom-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 479px) {
  [dir] .custom-blocks {
    margin-bottom: calc(16px * 1.5);
  }
}

.custom-block {
  display: flex;
}

[dir] .custom-block {
  float: none;
  margin-bottom: calc(16px * 1.5);
}

@media (max-width: 479px) {
  .custom-block {
    width: 100%;
  }

  [dir] .custom-block {
    padding: 0 calc(12px * 2);
  }
}

@media (min-width: 480px) {
  [dir] .custom-block {
    padding: 0 calc(12px * 2);
    text-align: center;
  }
}

@media (min-width: 768px) {
  [dir] .custom-block {
    margin-bottom: calc(16px * 1.5);
  }
}

.custom-block__link {
  display: block;
  width: 100%;
}

@media (max-width: 479px) {
  .custom-block__link {
    display: table;
  }
}

.custom-block__link:active .custom-block__icon path,
.custom-block__link:active .custom-block__icon circle,
.custom-block__link:focus .custom-block__icon path,
.custom-block__link:focus .custom-block__icon circle,
.custom-block__link:hover .custom-block__icon path,
.custom-block__link:hover .custom-block__icon circle {
  stroke: rgba(68, 48, 122, 1);
}

.custom-block__icon {
  display: inline-block;
}

.custom-block__icon svg {
  width: 56px;
  height: 56px;
}

@media (min-width: 480px) {
  .custom-block__icon svg {
    width: calc(56px + 10px);
    height: calc(56px + 10px);
  }
}

.custom-block__icon path,
.custom-block__icon circle {
  stroke: #0c9;
  transition: all 0.3s ease;
}

@media (min-width: 480px) {
  [dir] .custom-block__icon {
    margin-bottom: calc(16px * 1.5);
  }
}

.custom-block__title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(68, 48, 122, 1);
  text-transform: uppercase;
}

@media (max-width: 479px) {
  .custom-block__title {
    display: table-cell;
    width: 100%;
  }

  [dir="ltr"] .custom-block__title {
    padding-left: 12px;
  }

  [dir="rtl"] .custom-block__title {
    padding-right: 12px;
  }
}

@media (min-width: 480px) {
  .custom-block__title {
    display: block;
  }
}

@media (min-width: 768px) {
  [dir] .category-page {
    padding-top: 72px;
    margin-bottom: 0;
  }
}

[dir] .category-page .block-list {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .search-box--small {
    display: none;
  }
}

.category-description:empty {
  display: none;
}

[dir="ltr"] .category-tree.accordion--colored .accordion__item-title--active {
  margin-right: -1px;
  margin-left: -1px;
}

[dir="rtl"] .category-tree.accordion--colored .accordion__item-title--active {
  margin-right: -1px;
  margin-left: -1px;
}

[dir]
  .category-tree.accordion--colored
  .accordion__item:first-of-type
  .accordion__item-title--active {
  border-radius: 8px 8px 0 0;
}

[dir] .category-tree.accordion {
  margin-bottom: calc(16px * 1.5 * 2);
}

[dir] .category-tree-item__title {
  padding-bottom: calc(16px * 1.5 / 2);
  border-bottom: 2px solid #CBCBEB;
}

[dir] .category-tree-item__title.accordion__item-title {
  padding-top: calc(16px * 1.5);
  padding-bottom: calc(16px * 1.5);
  margin-bottom: 0;
}

[dir] .category-tree-item__sections {
  margin-bottom: calc(16px * 1.5);
}

@media (min-width: 768px) {
  [dir="ltr"] .category-tree-item__sections .section:nth-child(2n + 1) {
    clear: left;
  }

  [dir="rtl"] .category-tree-item__sections .section:nth-child(2n + 1) {
    clear: right;
  }
}

@media (min-width: 1023px) {
  [dir] .category-tree-item__sections .section:nth-child(2n + 1) {
    clear: none;
  }

  [dir="ltr"] .category-tree-item__sections .section:nth-child(3n + 1) {
    clear: left;
  }

  [dir="rtl"] .category-tree-item__sections .section:nth-child(3n + 1) {
    clear: right;
  }
}

[dir] .category-tree-item__sections.accordion__item-content {
  padding-top: calc(16px * 1.5 * 1.5);
  margin-bottom: 0;
}

[dir="ltr"] .category-tree-item__sections.accordion__item-content {
  margin-right: 0;
  margin-left: 0;
}

[dir="rtl"] .category-tree-item__sections.accordion__item-content {
  margin-right: 0;
  margin-left: 0;
}

.category-tree-item__title-link {
  color: inherit;
}

.category-tree-item__title-link--accordion {
  pointer-events: none;
}

/**** 
  CATEGORY TREE ACCORDION
****/

[dir] .category-tree-item--accordion-item {
  margin-bottom: calc(16px * 1.5);
  border: 2px solid #eceeef;
  border-radius: 8px;
}

.category-tree-item__title--accordion-title {
  position: relative;
  font-size: calc(16px * 1.25);
}

[dir] .category-tree-item__title--accordion-title {
  margin-bottom: 0;
  cursor: pointer;
  border: 0;
}

[dir="ltr"] .category-tree-item__title--accordion-title {
  padding: 20px 52px 20px 20px;
}

[dir="rtl"] .category-tree-item__title--accordion-title {
  padding: 20px 20px 20px 52px;
}

.category-tree-item__title--accordion-title:before {
  position: absolute;
  content: "";
}

.category-tree-item__title--accordion-title a {
  pointer-events: none;
}

.category-tree-item__sections--accordion-content {
  display: none;
}

[dir] .category-tree-item__sections--accordion-content {
  padding: 24px 10px;
  border-top: 2px solid #eceeef;
}

[dir="ltr"] .category-tree-item__sections--accordion-content {
  margin-right: 0;
  margin-left: 0;
}

[dir="rtl"] .category-tree-item__sections--accordion-content {
  margin-right: 0;
  margin-left: 0;
}

[dir] .category-tree-item__sections--accordion-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  [dir] .category-tree--accordion {
    margin-bottom: calc(16px * 1.5 * 3);
  }
}

.category-tree--accordion .category-tree-item__title--accordion-title:before {
  top: 50%;
  width: 8px;
  height: 8px;
  transition: transform 0.3s;
}

[dir]
  .category-tree--accordion
  .category-tree-item__title--accordion-title:before {
  margin-top: -4px;
  border-bottom: 2px solid rgba(113, 69, 214, 1);
}

[dir="ltr"]
  .category-tree--accordion
  .category-tree-item__title--accordion-title:before {
  right: 22px;
  border-left: 2px solid rgba(113, 69, 214, 1);
  transform: rotate(-45deg);
}

[dir="rtl"]
  .category-tree--accordion
  .category-tree-item__title--accordion-title:before {
  left: 22px;
  border-right: 2px solid rgba(113, 69, 214, 1);
  transform: rotate(45deg);
}

.category-tree--accordion
  .category-tree-item__title--accordion-title--active:before {
  transition: transform 0.3s;
}

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

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

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

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

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

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

@media (min-width: 1023px) {
  [dir="ltr"] .block-list {
    margin-right: -24px;
    margin-left: -24px;
  }

  [dir="rtl"] .block-list {
    margin-right: -24px;
    margin-left: -24px;
  }
}

.block-list-item {
  position: relative;
  display: flex;
}

[dir] .block-list-item {
  float: none;
  margin-bottom: 16px;
}

@media (min-width: 1023px) {
  .block-list-item {
    /* display: table; */
    /* min-height: 312px; */
  }

  [dir] .block-list-item {
    margin-bottom: 45px;
  }

  [dir="ltr"] .block-list-item {
    padding-right: 24px;
    padding-left: 24px;
  }

  [dir="rtl"] .block-list-item {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.block-list-item__link {
  display: block;
  width: 100%;
  font-weight: 700;
  color: #44307A;
  vertical-align: middle;
  transition: all 0.5s ease;
}

[dir] .block-list-item__link {
  padding: 32px;

  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.06);
}

.block-list-item__link:after {
  display: none;
}

@media (min-width: 768px) {
  [dir] .block-list-item__link {
    padding: 40px 40px 32px;
  }
}

.block-list-item__link img {
  width: auto;
  max-width: 100%;
  height: 64px;
}

[dir] .block-list-item__link img {
  margin-bottom: 24px;
}

a.block-list-item__link:active,
a.block-list-item__link:focus,
a.block-list-item__link:hover {
  color: #5B39A8;
  text-decoration: none;
}

[dir] a.block-list-item__link:active,
[dir] a.block-list-item__link:focus,
[dir] a.block-list-item__link:hover {
  background: #F3EDFF;
}

.block-list-item__title {
  font-size: 25px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.23px;
}

[dir] .block-list-item__title {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .block-list-item__title {
    font-size: 31px;
    line-height: 36px;
  }
}

.block-list-item__description {
  font-weight: 400;
}

[dir] .section-page {
  margin-bottom: calc(16px * 1.5 * 2);
}

[dir] .section-page .section-title {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  [dir] .section-page .section-title {
    margin-bottom: 16px;
  }
}

[dir] .section-page .article-list {
  margin-bottom: 56px;
}

[dir] .section-page .page-description {
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  [dir] .section-page .page-description {
    margin-bottom: 72px;
  }
}

.page-description {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .page-description {
    font-size: 23px;
    line-height: 32px;
  }
}

.article-list-item__link {
  font-size: 16px;
}

@media (min-width: 768px) {
  .article-list-item__link {
    font-size: 19px;
  }
}

.section {
  /* margin-bottom: calc(var(--line-height-computed)); */
  min-height: 446px;
}

@media (max-width: 767px) {
  .section {
    min-height: 419px;
  }
}

.section .block-list-item__link {
  display: flex;
  flex-direction: column;
}

[dir] .section .block-list-item__link {
  padding: 40px;
}

@media (max-width: 767px) {
  [dir] .section .block-list-item__link {
    padding: 40px 32px 32px;
  }
}

.section .block-list-item__link .article-list {
  flex-grow: 2;
}

.section__title {
  font-weight: 400;
}

.section__title-link {
  color: inherit;
}

[dir] .section__title-link {
  background-image: none !important;
}

.section__title-link:after {
  display: none;
}

.section-header {
  position: relative;
}

.section-subscribe {
  position: absolute;
  top: 0;
}

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

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

[dir="ltr"] .section-subscribe .dropdown-menu {
  right: 0;
  left: initial;
}

[dir="rtl"] .section-subscribe .dropdown-menu {
  right: initial;
  left: 0;
}

[dir="ltr"] .section-title {
  padding-right: 120px;
}

[dir="rtl"] .section-title {
  padding-left: 120px;
}

.section-tree {
  /* top: -112px; */
  position: relative;

  /* .section {
    @media (--screen-sm) {
      &:nth-child(2n + 1) {
        clear: left;
      }
    }

    @media (--screen-md) {
      &:nth-child(2n + 1) {
        clear: none;
      }

      &:nth-child(3n + 1) {
        clear: left;
      }
    }
  } */
}

@media (max-width: 767px) {
  .see-all-wrapper a {
    font-size: 16px;
  }
}

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

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

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

.article-list-item {
  position: relative;
}

[dir] .article-list-item {
  margin-bottom: 16px;
}

[dir="ltr"] .article-list-item {
  padding-left: 12px;
}

[dir="rtl"] .article-list-item {
  padding-right: 12px;
}

.article-list-item:before {
  position: absolute;
  top: 10px;
  display: block;
  width: 4px;
  height: 4px;
  content: "";
}

[dir] .article-list-item:before {
  background-color: #44307A;
  border-radius: 50%;
}

[dir="ltr"] .article-list-item:before {
  left: 0;
}

[dir="rtl"] .article-list-item:before {
  right: 0;
}

.article-list-item--is-promoted span {
  font-size: 10px;
  color: #fbce0a;
  vertical-align: middle;
}

.article-list-item__link {
  font-weight: 400;
  letter-spacing: -0.19px;
}

[dir] .article-list-item__link.primaryLink {
  background-image: none;
}

[dir] .article-list-item__link.primaryLink:hover {
  background-image: linear-gradient(
      rgba(115, 80, 255, 0.04),
      rgba(115, 80, 255, 0.04)
    ),
    linear-gradient(rgba(115, 80, 255, 0.08), rgba(115, 80, 255, 0.08));
}

.article-list-item__link.primaryLink:after {
  display: none;
}

[dir] .community-recent-activity {
  padding: calc(16px * 1.5) 15px;
  margin-bottom: calc(16px * 1.5 * 2);
  border: 2px solid #CBCBEB;
  border-radius: 8px;
}

.community-recent-activity h4 {
  font-size: calc(16px * 2.2);
  font-weight: 400;
}

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

.recent-activity-list {
  list-style: none;
}

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

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

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

@media (min-width: 768px) {
  [dir="ltr"] .recent-activity-list {
    margin-right: calc(15px * -1);
    margin-left: calc(15px * -1);
  }

  [dir="rtl"] .recent-activity-list {
    margin-right: calc(15px * -1);
    margin-left: calc(15px * -1);
  }
}

@media (min-width: 768px) {
  .recent-activity-item {
    display: inline-block;
    width: 33.3333%;
    vertical-align: top;
  }

  [dir] .recent-activity-item {
    margin-bottom: calc(16px * 1.5);
  }

  [dir="ltr"] .recent-activity-item {
    padding-right: 15px;
    padding-left: 15px;
  }

  [dir="rtl"] .recent-activity-item {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.recent-activity-item-meta {
  font-size: calc(16px * 0.75);
  color: #979fbd;
}

.recent-activity-item-parent {
  font-weight: 700;
  color: rgba(68, 48, 122, 1);
}

.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
}

[dir="ltr"] .recent-activity-comment-icon:after {
  margin-left: 4px;
}

[dir="rtl"] .recent-activity-comment-icon:after {
  margin-right: 4px;
}

[dir="rtl"] .recent-activity-comment-icon:after {
  margin-right: 4px;
}

[dir] .footer-submit-ticket {
  padding: calc(16px * 1.5 * 2) calc(12px * 2)
    calc(16px * 1.5);
  margin-bottom: calc(16px * 1.5 * 2);
  text-align: center;
  background-color: #CBCBEB;
  border-radius: 8px;
}

.footer-submit-ticket__title {
  font-size: calc(16px * 1.94);
}

.footer-submit-ticket__subtitle {
  font-size: calc(16px * 1.94);
  color: #7054bc;
}

.footer-submit-ticket__btn:empty {
  display: none;
}

[dir] .footer-submit-ticket__btn .btn {
  padding: 10px 18px;
}

.layout__footer {
  line-height: 1;
}

/*! CSS Used from: https://cabify.com/prisma-assets/cabify.css?v=0.51.4 ; media=all */

@media all {
  .layout__footer * {
    outline: none;
  }

  .layout__footer *,
  .layout__footer :after,
  .layout__footer :before {
    box-sizing: border-box;
  }

  .layout__footer a,
  .layout__footer div,
  .layout__footer footer,
  .layout__footer h2,
  .layout__footer i,
  .layout__footer label,
  .layout__footer li,
  .layout__footer nav,
  .layout__footer small,
  .layout__footer span,
  .layout__footer ul {
    font-size: 100%;
    vertical-align: baseline;
  }

  [dir] .layout__footer a,
  [dir] .layout__footer div,
  [dir] .layout__footer footer,
  [dir] .layout__footer h2,
  [dir] .layout__footer i,
  [dir] .layout__footer label,
  [dir] .layout__footer li,
  [dir] .layout__footer nav,
  [dir] .layout__footer small,
  [dir] .layout__footer span,
  [dir] .layout__footer ul {
    padding: 0;
    margin: 0;
    border: 0;
  }

  .layout__footer footer,
  .layout__footer nav {
    display: block;
  }

  .layout__footer ul {
    list-style: none;
  }

  [dir] .layout__footer a {
    cursor: pointer;
  }

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

  .layout__footer .row {
    display: flex;
    flex-wrap: wrap;
  }

  .layout__footer .row > .col-desktop3 {
    width: 25%;
  }
  @media (max-width: 989px) {
    .layout__footer .row > .col-tablet12 {
      width: 100%;
    }

    .layout__footer .row > .col-tablet6 {
      width: 50%;
    }
  }
  @media (max-width: 767px) {
    .layout__footer .row > .col-mobile12 {
      width: 100%;
    }
  }

  .layout__footer .col {
    width: 100%;
  }

  [dir="ltr"] .layout__footer .row-gutterBig {
    margin-right: -16px;
    margin-left: -16px;
  }

  [dir="rtl"] .layout__footer .row-gutterBig {
    margin-right: -16px;
    margin-left: -16px;
  }

  [dir="ltr"] .layout__footer .row-gutterBig > .col {
    margin-right: 16px;
    margin-left: 16px;
  }

  [dir="rtl"] .layout__footer .row-gutterBig > .col {
    margin-right: 16px;
    margin-left: 16px;
  }

  .layout__footer .row-gutterBig > .col-desktop3 {
    width: calc(25% - 32px);
  }
  @media (max-width: 989px) {
    .layout__footer .row-gutterBig > .col-tablet12 {
      flex: 0 0 calc(100% - 32px);
    }

    .layout__footer .row-gutterBig > .col-tablet6 {
      flex: 0 0 calc(50% - 32px);
    }
  }
  @media (max-width: 767px) {
    .layout__footer .row-gutterBig > .col-mobile12 {
      flex: 0 0 calc(100% - 32px);
    }
  }

  .layout__footer .row-alignBetween {
    justify-content: space-between;
  }

  [dir] .layout__footer .row-separationEnormous {
    margin-top: 48px;
  }

  .layout__footer h2 {
    font-size: 1.5em;
  }

  .layout__footer small {
    font-size: smaller;
  }

  .layout__footer * {
    letter-spacing: -0.01em;
  }

  .layout__footer a {
    text-decoration: none;
  }

  .layout__footer .icn-small {
    width: 16px;
    height: 16px;
  }
  @media (min-width: 990px) {
    .layout__footer .icn-small {
      width: 20px;
      height: 20px;
    }
  }

  .layout__footer .customSelect {
    position: relative;
  }

  .layout__footer .customSelect select:-moz-focusring {
    color: inherit;
  }

  .layout__footer .customSelect select::-ms-expand {
    display: none;
  }

  [dir="ltr"] .layout__footer .customSelect .dropdown-icon {
    margin-left: 0.5rem;
  }

  [dir="rtl"] .layout__footer .customSelect .dropdown-icon {
    margin-right: 0.5rem;
  }

  .layout__footer .dropdown-icon {
    width: 16px;
    height: 16px;
    opacity: 1;
  }

  [dir] .layout__footer .dropdown-icon {
    background-color: inherit;
    background-repeat: no-repeat;
  }

  .layout__footer .footer .container {
    box-sizing: content-box;
  }

  .layout__footer .nav-link {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.5rem;
    color: #fff;
  }
  @media (max-width: 767px) {
    .layout__footer .nav-link {
      font-size: 14px;
    }
  }

  .layout__footer .nav-link:after {
    position: absolute;
    top: 7px;
    z-index: -1;
    height: 14px;
    content: "";
    opacity: 0.08;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  }

  [dir] .layout__footer .nav-link:after {
    background-color: #7145D6;
    transform: scaleX(0);
  }

  [dir="ltr"] .layout__footer .nav-link:after {
    right: -0.5rem;
    left: 0.5rem;
    transform-origin: 100% 50%;
  }

  [dir="rtl"] .layout__footer .nav-link:after {
    right: 0.5rem;
    left: -0.5rem;
    transform-origin: 0% 50%;
  }

  [dir] .layout__footer .nav-link:hover:after {
    transition-timing-function: ease;
    transform: scaleX(1);
  }

  [dir="ltr"] .layout__footer .nav-link:hover:after {
    transform-origin: 0 50%;
  }

  [dir="rtl"] .layout__footer .nav-link:hover:after {
    transform-origin: 100% 50%;
  }
  @media (max-width: 989px) {
    .layout__footer .nav-link:after {
      content: none;
    }
  }

  .layout__footer .appStores {
    display: flex;
    width: 100%;
    max-width: 20.5rem;
    font-size: 0;
    list-style: none;
    align-items: flex-start;
    justify-content: flex-start;
  }

  [dir] .layout__footer .appStores {
    padding: 0;
    margin: 0;
  }

  .layout__footer .appStores_item {
    flex: 0 0 calc(50% - 0.5rem);
  }

  [dir="ltr"] .layout__footer .appStores_item + .appStores_item {
    margin-left: 1rem;
  }

  [dir="rtl"] .layout__footer .appStores_item + .appStores_item {
    margin-right: 1rem;
  }

  .layout__footer .appStores_link {
    display: block;
  }

  .layout__footer .appStores_link svg {
    width: 100%;
  }
  @media (min-width: 48em) {
    .layout__footer .appStores {
      max-width: 19.625rem;
    }

    .layout__footer .appStores_item {
      flex: 0 0 calc(50% - 0.75rem);
    }

    [dir="ltr"] .layout__footer .appStores_item + .appStores_item {
      margin-left: 1.5rem;
    }

    [dir="rtl"] .layout__footer .appStores_item + .appStores_item {
      margin-right: 1.5rem;
    }
  }
  @media (min-width: 61.875em) {
    .layout__footer .appStores {
      max-width: 18rem;
    }
  }

  .layout__footer .footer {
    color: #fff;
  }

  [dir] .layout__footer .footer {
    padding: 3.5rem 7rem;
    background-color: #7145D6;
  }

  .layout__footer .footer .container {
    position: relative;
    max-width: 1200px;
  }

  [dir] .layout__footer .footer .container {
    padding: 0;
    margin: 0 auto;
  }
  @media (max-width: 989px) {
    [dir] .layout__footer .footer {
      padding: 3.5rem;
    }
  }
  @media (max-width: 767px) {
    [dir] .layout__footer .footer {
      padding: 2.5rem 1rem;
    }
  }

  [dir] .layout__footer .footer-block-title {
    margin-bottom: 1rem;
  }

  .layout__footer .footer-block-title-text {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.34;
    text-transform: uppercase;
    letter-spacing: 0.016em;
    opacity: 0.48;
  }
  @media (min-width: 0em) {
    .layout__footer .footer-block-title-text {
      letter-spacing: 0.025em;
    }
  }
  @media (min-width: 48em) {
    .layout__footer .footer-block-title-text {
      letter-spacing: 0.016em;
    }
  }
  @media (min-width: 0em) {
    .layout__footer .footer-block-title-text {
      line-height: 1.43;
    }
  }
  @media (min-width: 48em) {
    .layout__footer .footer-block-title-text {
      line-height: 1.34;
    }
  }
  @media (min-width: 0em) {
    .layout__footer .footer-block-title-text {
      font-size: 0.875rem;
    }
  }
  @media (min-width: 48em) {
    .layout__footer .footer-block-title-text {
      font-size: 0.9375rem;
    }
  }

  .layout__footer .footer-block-title .dropdown-icon {
    display: none;
  }

  [dir] .layout__footer .footer-block-list-item {
    padding-bottom: 0.75rem;
  }

  .layout__footer .footer-block-social {
    display: flex;
    list-style-type: none;
  }

  [dir="ltr"] .layout__footer .footer-block-social-item {
    margin-left: 1.5rem;
  }

  [dir="rtl"] .layout__footer .footer-block-social-item {
    margin-right: 1.5rem;
  }

  [dir="ltr"] .layout__footer .footer-block-social-item:first-child {
    margin-left: 0;
  }

  [dir="rtl"] .layout__footer .footer-block-social-item:first-child {
    margin-right: 0;
  }

  .layout__footer .footer-block-social-link {
    color: #fff;
  }

  .layout__footer .footer-block.downloads {
    /* margin-top: 2rem; */
  }

  [dir] .layout__footer .footer-block.downloads {
    padding-bottom: 1.5rem;
  }

  [dir] .layout__footer .footer-block.downloads .footer-block-title {
    padding-bottom: 0;
    margin-bottom: 1rem;
  }

  .layout__footer .footer-block.copyright {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    opacity: 0.48;
  }
  @media (min-width: 0em) {
    .layout__footer .footer-block.copyright {
      letter-spacing: -0.01em;
    }
  }
  @media (min-width: 48em) {
    .layout__footer .footer-block.copyright {
      letter-spacing: -0.01em;
    }
  }
  @media (min-width: 0em) {
    .layout__footer .footer-block.copyright {
      line-height: 1.43;
    }
  }
  @media (min-width: 48em) {
    .layout__footer .footer-block.copyright {
      line-height: 1.5;
    }
  }
  @media (min-width: 0em) {
    .layout__footer .footer-block.copyright {
      font-size: 0.875rem;
    }
  }
  @media (min-width: 48em) {
    .layout__footer .footer-block.copyright {
      font-size: 1rem;
    }
  }

  .layout__footer .footer .social-icon {
    display: block;
    width: 20px;
    height: 20px;
  }

  [dir] .layout__footer .footer .social-icon {
    background-color: inherit;
    background-repeat: no-repeat;
  }

  [dir] .layout__footer .footer .dropdown-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.707 10.707a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 8.586l3.293-3.293a1 1 0 111.414 1.414l-4 4z' fill='%2344307A'/%3E%3C/svg%3E");
  }

  [dir] .layout__footer .footer .dropdown-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8.707 10.707a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 8.586l3.293-3.293a1 1 0 111.414 1.414l-4 4z' fill='%23FFF'/%3E%3C/svg%3E");
  }

  [dir] .layout__footer .social-icon.icn-facebook {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15 8a7 7 0 10-8.094 6.915v-4.892H5.13V8h1.777V6.458c0-1.755 1.045-2.724 2.644-2.724.766 0 1.567.137 1.567.137v1.723h-.883c-.87 0-1.14.54-1.14 1.093V8h1.941l-.31 2.023H9.094v4.892A7.002 7.002 0 0015 8z' fill='%23FFF'/%3E%3C/svg%3E");
  }

  [dir] .layout__footer .social-icon.icn-twitter {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.403 13.686c5.283 0 8.172-4.377 8.172-8.173 0-.124 0-.248-.008-.371A5.844 5.844 0 0015 3.655a5.733 5.733 0 01-1.65.452 2.882 2.882 0 001.263-1.589c-.564.335-1.18.57-1.824.697a2.875 2.875 0 00-4.895 2.62 8.155 8.155 0 01-5.92-3.001 2.874 2.874 0 00.89 3.834 2.851 2.851 0 01-1.304-.36v.037a2.873 2.873 0 002.304 2.816 2.868 2.868 0 01-1.297.05 2.876 2.876 0 002.684 1.994A5.763 5.763 0 011 12.395a8.132 8.132 0 004.403 1.289' fill='%23FFF'/%3E%3C/svg%3E");
  }

  [dir] .layout__footer .social-icon.icn-instagram {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='20' height='20' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.998 1.004c1.9 0 2.139.008 2.885.043.745.034 1.254.152 1.699.325.46.179.85.418 1.24.807.388.389.627.78.806 1.24.173.445.291.953.325 1.698.035.746.043.985.043 2.885s-.008 2.139-.043 2.885c-.034.745-.152 1.254-.325 1.699a3.43 3.43 0 01-.807 1.24 3.43 3.43 0 01-1.24.807c-.444.173-.953.29-1.698.325-.746.034-.985.042-2.885.042s-2.139-.008-2.885-.042c-.745-.034-1.254-.152-1.699-.325a3.43 3.43 0 01-1.24-.807 3.43 3.43 0 01-.807-1.24c-.173-.445-.29-.954-.325-1.699C1.008 10.141 1 9.903 1 8.002c0-1.9.008-2.139.042-2.885.034-.745.152-1.253.325-1.699.18-.46.418-.85.808-1.24a3.43 3.43 0 011.239-.806c.445-.173.954-.291 1.699-.325.746-.035.984-.043 2.885-.043zm0 1.261c-1.869 0-2.09.007-2.828.041-.682.031-1.053.145-1.3.241-.326.127-.56.279-.804.524a2.168 2.168 0 00-.523.804c-.096.247-.21.617-.241 1.3-.034.737-.041.959-.041 2.827 0 1.869.007 2.09.04 2.828.032.682.146 1.053.242 1.3.127.326.278.56.523.804.245.245.478.397.805.523.246.096.617.21 1.3.241.737.034.958.041 2.827.041 1.868 0 2.09-.007 2.827-.04.683-.032 1.053-.146 1.3-.242.326-.127.56-.278.805-.523.244-.245.396-.478.523-.805.096-.246.21-.617.24-1.3.035-.737.042-.958.042-2.827 0-1.868-.007-2.09-.041-2.827-.031-.683-.145-1.053-.241-1.3a2.168 2.168 0 00-.523-.804 2.168 2.168 0 00-.805-.524c-.247-.096-.617-.21-1.3-.24-.737-.035-.959-.042-2.827-.042zm0 8.07a2.333 2.333 0 100-4.665 2.333 2.333 0 000 4.665zm0-5.926a3.593 3.593 0 110 7.187 3.593 3.593 0 010-7.187zm4.575-.142a.84.84 0 11-1.68 0 .84.84 0 011.68 0z' fill='%23FFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' transform='translate(1 1)' d='M0 0h14v14H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  }

  .layout__footer .customSelect {
    color: #fff;
  }

  [dir] .layout__footer .customSelect {
    margin: 0.3125rem 0 0.9375rem;
  }

  .layout__footer .customSelect .simulatedSelect {
    display: flex;
    align-items: center;
    font-size: 1rem;
  }

  .layout__footer .customSelect .simulatedSelect .dropdown-icon {
    display: inline;
  }

  .layout__footer .hiddenSelect {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  [dir="ltr"] .layout__footer .hiddenSelect {
    left: 0;
  }

  [dir="rtl"] .layout__footer .hiddenSelect {
    right: 0;
  }
  @media (max-width: 989px) {
    .layout__footer .footer-block {
      max-height: 68px;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    [dir] .layout__footer .footer-block {
      border-bottom: 1px solid hsla(0, 0%, 100%, 0.16);
    }

    .layout__footer .footer-block-title {
      display: flex;
      justify-content: space-between;
      width: 100%;
    }

    [dir] .layout__footer .footer-block-title {
      padding: 1.5rem 0;
      margin: 0;
      cursor: pointer;
    }

    .layout__footer .footer-block-title .dropdown-icon {
      display: block;
    }

    .layout__footer .footer-block.language {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .layout__footer .footer-block .dropdown-icon {
      position: relative;
      transition: transform 0.5s;
    }

    [dir="ltr"] .layout__footer .footer-block .dropdown-icon {
      margin-left: 0.3125rem;
    }

    [dir="rtl"] .layout__footer .footer-block .dropdown-icon {
      margin-right: 0.3125rem;
    }

    .layout__footer .footer-block.downloads {
      max-height: 31.25rem;
    }

    .layout__footer .footer-block.downloads {
      pointer-events: none;
    }

    [dir] .layout__footer .footer-block.downloads {
      margin-top: 0;
      cursor: default;
    }

    [dir] .layout__footer .footer-block.downloads .footer-block-title {
      padding-bottom: 0;
      margin-bottom: 1rem;
    }

    .layout__footer .footer-block-social {
      justify-content: flex-end;
    }

    [dir] .layout__footer .footer-block.copyright {
      border: 0;
    }

    [dir] .layout__footer .customSelect {
      margin: 0;
    }
  }
  @media (min-width: 61.875em) {
    [dir] .layout__footer .footer-block.downloads .footer-block-title {
      margin-bottom: 1.5rem;
    }

    [dir] .layout__footer .footer-block-list-item {
      padding-bottom: 0.5rem;
    }
  }
}

@media (max-width: 989px) {
  .layout__footer .footer-block.downloads,
  .layout__footer .footer-block.open {
    max-height: 31.25rem;
  }

  [dir="ltr"]
    .layout__footer
    .footer-block.open
    .footer-block-title
    .dropdown-icon {
    transform: rotate(180deg);
  }

  [dir="rtl"]
    .layout__footer
    .footer-block.open
    .footer-block-title
    .dropdown-icon {
    transform: rotate(-180deg);
  }
}

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

[dir] table {
  background-color: transparent;
}

caption {
  color: #818a91;
}

[dir] caption {
  padding-top: 12px;
  padding-bottom: 12px;
}

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

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

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

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

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

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

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

[dir] .table th,
[dir] .table td {
  padding: 12px;
}

[dir] .table td {
  border-top: 1px solid #d3d6d8;
}

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

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

[dir] .table .table {
  background-color: #fff;
}

.table--color-header th {
  color: #fff;
}

[dir] .table--color-header th {
  background-color: rgba(113, 69, 214, 1);
}

[dir] .table--striped th,
[dir] .table--striped td,
[dir] .table--striped thead th {
  border-color: #fff;
}

.table--striped tbody tr:nth-child(odd) {
  color: inherit;
}

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

.table--hover tbody tr:hover {
  color: inherit;
}

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

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

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

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

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

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

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  [dir] .table-responsive {
    margin-bottom: calc(16px * 1.5 * 0.75);
    border: 1px solid #d3d6d8;
  }

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

.meta {
  font-size: 14px;
  color: #979fbd;
}

.meta__item {
  display: inline-block;
}

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

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

.meta__item + .meta__item:before {
  font-size: 10px;
  content: "\2022";
}

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

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

[dir] .meta--profile {
  margin-bottom: 0;
}

.breadcrumbs {
  font-size: 0;
  list-style: none;
}

[dir] .breadcrumbs {
  padding: 0;
  margin-bottom: calc(16px * 1.5);
  background-color: transparent;
  border-radius: 8px;
}

@media (max-width: 767px) {
  [dir] .breadcrumbs {
    margin-bottom: 16px;
  }

  .breadcrumbs li:first-child {
    display: none;
  }

  .breadcrumbs li:nth-child(2):before {
    display: none;
  }

  .breadcrumbs li,
  .breadcrumbs a {
    font-size: 14px;
  }
}

.breadcrumbs > li {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  color: #7145D6;
  text-transform: uppercase;
  letter-spacing: 0.24px;
}

.breadcrumbs > li + li:before {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  content: "";
}

[dir] .breadcrumbs > li + li:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7071 7.29289C11.0976 7.68342 11.0976 8.31658 10.7071 8.70711L6.70711 12.7071C6.31658 13.0976 5.68342 13.0976 5.29289 12.7071C4.90237 12.3166 4.90237 11.6834 5.29289 11.2929L8.58579 8L5.29289 4.70711C4.90237 4.31658 4.90237 3.68342 5.29289 3.29289C5.68342 2.90237 6.31658 2.90237 6.70711 3.29289L10.7071 7.29289Z' fill='%23979FBD'/%3E%3C/svg%3E%0A");
}

[dir="ltr"] .breadcrumbs > li + li:before {
  margin: -4px 3px 0 8px;
}

[dir="rtl"] .breadcrumbs > li + li:before {
  margin: -4px 8px 0 3px;
}

.breadcrumbs > li a {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  color: #7145D6;
  text-transform: uppercase;
  letter-spacing: 0.24px;
}

.breadcrumbs--search-results {
  font-size: calc(16px * 0.75);
}

[dir] .breadcrumbs--search-results {
  padding: 0;
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir] .search-results-page {
  margin-bottom: calc(16px * 1.5 * 2);
}

.search-results-count {
  /* font-size: var(--font-size-h4); */
  font-weight: 700;
}

[dir] .search-result {
  margin-bottom: calc(16px * 1.5);
  border-bottom: 1px solid #CBCBEB;
}

.search-result__title {
  font-weight: 700;
}

[dir] .search-result__title {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir] .search-result__description {
  margin-bottom: calc(16px * 1.5 / 2);
}

.search-result__description:empty {
  display: none;
}

.search-result__description em {
  font-style: normal;
  font-weight: 700;
}

[dir] .search-result__description em {
  padding: 0 3px;
  background-color: #F3EDFF;
  border-radius: 3px;
}

[dir] .search-result__meta {
  margin-bottom: calc(16px * 1.5 / 2);
}

.search-result-votes {
  display: inline-block;
  font-size: calc(16px * 0.75);
  color: #fff;
}

[dir] .search-result-votes {
  padding: 2px 4px;
  background-color: rgba(113, 69, 214, 1);
  border-radius: 8px;
}

/* ==========================================================================
  Search Results Filters
   ========================================================================== */

.search-results-filters {
  font-size: calc(16px - 2px);
}

[dir] .search-results-filters {
  padding: 16px;
  border: 1px solid #CBCBEB;
  border-radius: 8px;
}

@media (max-width: 767px) {
  [dir] .search-results-filters {
    margin-bottom: calc(16px * 1.5 * 2);
  }
}

[dir] .search-results-filter + .search-results-filter {
  margin-top: 24px;
}

@media (min-width: 768px) {
  [dir] .search-results-filter + .search-results-filter {
    margin-top: 32px;
  }
}

.search-results-filter__title {
  font-weight: 700;
}

[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(16px * 1);
  }

  [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 (min-width: 768px) {
  .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(113, 69, 214, 1);
  border-color: rgba(113, 69, 214, 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: rgba(68, 48, 122, 1);
  text-decoration: none;
  transition: all 0.3s ease;
}

[dir] .search-results-filter__link {
  padding: 6px 8px;
  border: 2px solid transparent;
  border-radius: 8px;
}

[dir] .search-results-filter__link:hover {
  background-color: #f7f7f9;
  border-color: #f7f7f9;
}

[dir] .search-results-filter__link:focus {
  background-color: #f7f7f9;
  border-color: #f7f7f9;
}

[dir] .search-results-filter__link:active {
  background-color: #f7f7f9;
  border-color: #f7f7f9;
}

.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: rgba(113, 69, 214, 1);
}

[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] .article-page {
  margin-bottom: calc(16px * 1.5 * 2);
}

@media (max-width: 767px) {
  .article-page .search-box--small {
    display: none;
  }
}

.article {
  position: relative;
}

.article__title {
  font-size: calc(16px * 1.94);
}

/* font-weight: 300; */

@media (min-width: 768px) {
  .article__title {
    font-size: calc(16px * 2.2);
  }
}

@media (min-width: 1023px) {
  .article__title {
    font-size: calc(16px * 2.5);
  }

  [dir] .article__title {
    margin-bottom: 72px;
  }
}

.article-meta {
  display: table;
  width: 100%;
}

[dir] .article-meta {
  margin-bottom: calc(16px * 1.5);
}

.article-meta__col {
  display: table-cell;

  vertical-align: top;
}

.article-meta__col--main {
  width: 100%;
}

[dir="ltr"] .article-meta__col--main {
  padding-right: 12px;
}

[dir="rtl"] .article-meta__col--main {
  padding-left: 12px;
}

.article__body {
  font-size: 16px;
  line-height: 24px;
  word-break: break-word;
}

[dir] .article__body {
  margin-bottom: calc(16px * 1.5);
}

@media (min-width: 768px) {
  .article__body {
    font-size: 19px;
    line-height: 28px;
  }
}

.article__body h2,
.article__body .wysiwyg-font-size-x-large {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

[dir] .article__body h2,
[dir] .article__body .wysiwyg-font-size-x-large {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article__body h2,
  .article__body .wysiwyg-font-size-x-large {
    font-size: 29px;
    line-height: 40px;
  }

  [dir] .article__body h2,
  [dir] .article__body .wysiwyg-font-size-x-large {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.article__body h3,
.article__body .wysiwyg-font-size-large {
  font-size: 23px;
  font-weight: 700;
  line-height: 32px;
}

[dir] .article__body h3,
[dir] .article__body .wysiwyg-font-size-large {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article__body h3,
  .article__body .wysiwyg-font-size-large {
    font-size: 20px;
    line-height: 24px;
  }

  [dir] .article__body h3,
  [dir] .article__body .wysiwyg-font-size-large {
    margin-top: 40px;
    margin-bottom: 32px;
  }
}

.article__body h4,
.article__body .wysiwyg-font-size-medium {
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

[dir] .article__body h4,
[dir] .article__body .wysiwyg-font-size-medium {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article__body h4,
  .article__body .wysiwyg-font-size-medium {
    font-size: 19px;
    line-height: 28px;
  }

  [dir] .article__body h4,
  [dir] .article__body .wysiwyg-font-size-medium {
    margin-bottom: 16px;
  }
}

.article__body h5 {
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
}

[dir] .article__body h5 {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article__body h5 {
    font-size: 23px;
    line-height: 32px;
  }

  [dir] .article__body h5 {
    margin-bottom: 40px;
  }
}

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

.article__body b,
.article__body strong {
  font-weight: 700;
}

.article__body ul,
.article__body ol {
  list-style: none;
}

[dir] .article__body ul,
[dir] .article__body ol {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.article__body ul li,
.article__body ol li {
  position: relative;
}

[dir] .article__body ul li,
[dir] .article__body ol li {
  margin-bottom: 16px;
}

[dir="ltr"] .article__body ul li,
[dir="ltr"] .article__body ol li {
  padding-left: 32px;
}

[dir="rtl"] .article__body ul li,
[dir="rtl"] .article__body ol li {
  padding-right: 32px;
}

@media (min-width: 768px) {
  [dir="ltr"] .article__body ul li,
  [dir="ltr"] .article__body ol li {
    padding-left: 40px;
  }

  [dir="rtl"] .article__body ul li,
  [dir="rtl"] .article__body ol li {
    padding-right: 40px;
  }
}

.article__body ul:not(.list-bullet) li:before {
  position: absolute;
  top: 10px;
  display: block;
  width: 16px;
  height: 1px;
  content: "";
}

[dir] .article__body ul:not(.list-bullet) li:before {
  background: #44307A;
  border-radius: 8px;
}

[dir="ltr"] .article__body ul:not(.list-bullet) li:before {
  left: 0;
}

[dir="rtl"] .article__body ul:not(.list-bullet) li:before {
  right: 0;
}

.article__body ol:not(.list-colored) {
  counter-reset: list-counter;
}

.article__body ol:not(.list-colored) li {
  counter-increment: list-counter;
}

.article__body ol:not(.list-colored) li:before {
  position: absolute;
  font-size: 16px;
  line-height: 24px;
  color: #616a8f;
  content: counter(list-counter) ". ";
}

[dir="ltr"] .article__body ol:not(.list-colored) li:before {
  left: 0;
}

[dir="rtl"] .article__body ol:not(.list-colored) li:before {
  right: 0;
}

@media (min-width: 768px) {
  .article__body ol:not(.list-colored) li:before {
    font-size: 19px;
    line-height: 28px;
  }
}

.article-vote {
  position: relative;
}

[dir] .article-vote {
  padding: 40px 0;
  border-top: 1px solid #CBCBEB;
  border-radius: 0;
}

@media (max-width: 767px) {
  [dir] .article-vote {
    padding: 32px 0;
    border-bottom: 1px solid #CBCBEB;
  }
}

.article-vote-controls__item--voted {
  color: #5B39A8;
}

[dir] .article-vote-controls__item--voted {
  background: #F3EDFF;
  border: 2px solid #5B39A8;
  box-shadow: none;
}

.article-vote-question {
  display: block;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
}

[dir] .article-vote-question {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .article-vote-question {
    font-size: 23px;
    line-height: 32px;
  }

  [dir] .article-vote-question {
    margin-bottom: 24px;
  }
}

.article-vote-controls {
  font-size: 0;
  white-space: nowrap;
}

[dir] .article-vote-controls {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .article-vote-controls {
    display: block;
  }

  [dir] .article-vote-controls {
    margin-bottom: 24px;
  }
}

.article-vote-controls button {
  min-width: 148px;
  height: 56px;
  font-size: 16px;
  line-height: 24px;
  color: #7145D6;
  text-transform: none;
  /* margin-right: 16px; */
}

[dir] .article-vote-controls button {
  background: #F3EDFF;
  border-color: #F3EDFF;
  border-width: 2px;
  border-radius: 8px;
  box-shadow: none;
}

[dir="ltr"] .article-vote-controls button:first-of-type {
  margin-right: 16px;
}

[dir="rtl"] .article-vote-controls button:first-of-type {
  margin-left: 16px;
}

@media (max-width: 767px) {
  .article-vote-controls button {
    height: 48px;
  }
}

.article-vote-controls button:hover {
  color: #8C5CFF;
}

[dir] .article-vote-controls button:hover {
  background: #F3EDFF;
  border: 2px solid #ddd5ff;
  box-shadow: none;
}

.article-vote-controls button:active,
.article-vote-controls button:focus {
  color: #5B39A8;
}

[dir] .article-vote-controls button:active,
[dir] .article-vote-controls button:focus {
  background: #F3EDFF;
  border: 2px solid #5B39A8;
  box-shadow: none;
}

.article-vote-count {
  display: block;
  font-size: 16px;

  color: #979fbd;
}

[dir] .article__share {
  margin-bottom: calc(16px * 1.5);
}

[dir] .article__share ul {
  margin-top: 0;
}

[dir] .article-footer {
  margin-bottom: calc(16px * 1.5);
}

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

[dir] .article-more-questions {
  margin-bottom: calc(16px * 1.5);
  clear: both;
}

.article-more-questions:empty {
  display: none;
}

.article-more-questions a {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .article-sidebar {
    /* border-top: var(--border-width) solid var(--hr-border); */
  }

  [dir] .article-sidebar {
    padding-top: 10px;
  }
}

.article-container {
  display: flex;
  flex-wrap: wrap;
}

[dir="ltr"] .article-container {
  margin-right: calc(15px * -1);
  margin-left: calc(15px * -1);
}

[dir="rtl"] .article-container {
  margin-right: calc(15px * -1);
  margin-left: calc(15px * -1);
}

[dir="ltr"] .article-container__column {
  padding-right: 15px;
  padding-left: 15px;
}

[dir="rtl"] .article-container__column {
  padding-right: 15px;
  padding-left: 15px;
}

.article-container__sidenav,
.article-container__toc {
  display: none;
}

.sidenav-enabled .article-container__sidenav,
.toc-enabled .article-container__toc {
  display: block;
}

[dir] .sidenav-enabled .article-container__sidenav {
  padding-bottom: 24px;
}

[dir="ltr"] .article-container__sidebar {
  padding-left: 15px;
}

[dir="rtl"] .article-container__sidebar {
  padding-right: 15px;
}

@media (min-width: 1023px) {
  .article-container__article {
    width: calc(100% / 12 * 8);
  }

  .article-container__sidebar {
    width: calc(100% / 12 * 4);
  }

  [dir="ltr"] .article-container__sidebar {
    padding-left: 35px;
  }

  [dir="rtl"] .article-container__sidebar {
    padding-right: 35px;
  }

  .toc-enabled .article-container__toc {
    width: calc(100% / 12 * 4);
  }

  .sidenav-enabled .article-container__sidenav {
    width: calc(100% / 12 * 4);
  }

  [dir="ltr"] .sidenav-enabled .article-container__sidebar {
    margin-left: calc(100% / 12 * 4);
  }

  [dir="rtl"] .sidenav-enabled .article-container__sidebar {
    margin-right: calc(100% / 12 * 4);
  }

  .sidenav-enabled.toc-enabled .article-container__sidenav,
  .sidenav-enabled.toc-enabled .article-container__toc {
    width: calc(100% / 12 * 3);
  }

  .sidenav-enabled.toc-enabled .article-container__article {
    width: calc(100% / 12 * 6);
  }

  [dir="ltr"] .sidenav-enabled.toc-enabled .article-container__sidebar {
    margin-left: calc(100% / 12 * 3);
  }

  [dir="rtl"] .sidenav-enabled.toc-enabled .article-container__sidebar {
    margin-right: calc(100% / 12 * 3);
  }
}

@media (min-width: 1200px) {
  .sidenav-enabled.toc-enabled .article-container__article {
    width: calc(100% / 12 * 7);
  }

  .sidenav-enabled.toc-enabled .article-container__toc {
    width: calc(100% / 12 * 2);
  }
}

/* ==========================================================================
  Comment Form
  ========================================================================== */

.comment-form {
  position: relative;
}

[dir] .comment-form {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form {
    padding-left: 72px;
  }

  [dir="rtl"] .comment-form {
    padding-right: 72px;
  }
}

.comment-form__avatar {
  position: absolute;
  top: 0;
}

[dir="ltr"] .comment-form__avatar {
  left: 0;
}

[dir="rtl"] .comment-form__avatar {
  right: 0;
}

@media (max-width: 767px) {
  .comment-form__avatar {
    display: none;
  }
}

[dir] .comment-form__attachments {
  margin-bottom: 24px;
}

.comment-form__mark-as-solved {
  position: relative;
}

[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 #eceeef;
  border-radius: 8px 8px 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;
}

[dir] .comment-form__body {
  margin-bottom: 16px;
}

/* ==========================================================================
  Comment Sorter
  ========================================================================== */

[dir] .comment-sorter {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #eceeef;
}

@media (min-width: 768px) {
  .comment-sorter {
    display: table;
    width: 100%;
  }
}

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

@media (max-width: 767px) {
  [dir] .comment-sorter__col--main {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-sorter__col--main {
    padding-right: 16px;
  }

  [dir="rtl"] .comment-sorter__col--main {
    padding-left: 16px;
  }
}

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

  [dir="rtl"] .comment-sorter__col--filters {
    text-align: left;
  }
}

.comment-sorter__item.is-active {
  font-weight: 600;
}

.comment-sorter__item + .comment-sorter__item:before {
  font-size: 10px;
  font-weight: 900;
  content: "\2022";
}

[dir] .comment-sorter__item + .comment-sorter__item:before {
  margin: 0 6px;
}

/* ==========================================================================
  Comment
  ========================================================================== */

[dir] .comment {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #CBCBEB;
}

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

.comment__header {
  position: relative;
}

[dir] .comment__header {
  margin-bottom: 24px;
}

.comment__content {
  flex-grow: 1;
}

.comment__voting-and-actions {
  flex-shrink: 0;
}

[dir="ltr"] .comment__voting-and-actions {
  margin-left: 16px;
}

[dir="rtl"] .comment__voting-and-actions {
  margin-right: 16px;
}

.comment__official-heading {
  position: absolute;
  top: 0;
  width: auto;
  font-size: calc(16px * 0.75);
  color: #fff;
}

[dir] .comment__official-heading {
  padding: 2px 8px;
  background-color: rgba(113, 69, 214, 1);
  border-radius: 0 0 8px 8px;
}

[dir="ltr"] .comment__official-heading {
  right: 36px;
}

[dir="rtl"] .comment__official-heading {
  left: 36px;
}

.comment--official .comment__inner {
  position: relative;
}

[dir] .comment--official .comment__inner {
  padding: 24px;
  border: 1px solid rgba(113, 69, 214, 1);
  border-radius: 8px;
}

.comment__body {
  word-break: break-word;
}

[dir] .comment__body {
  margin-bottom: 24px;
}

.comment__body ul {
  list-style: disc;
}

[dir="ltr"] .comment__body ul,
[dir="ltr"] .comment__body ol {
  padding-left: 20px;
}

[dir="rtl"] .comment__body ul,
[dir="rtl"] .comment__body ol {
  padding-right: 20px;
}

[dir] .comment__body ul ul,
[dir] .comment__body ul ol,
[dir] .comment__body ol ul,
[dir] .comment__body ol ol {
  margin-top: 12px;
}

[dir] .comment__body ul li,
[dir] .comment__body ol li {
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .comment__body [dir="auto"] {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  [dir] .comment__body {
    margin-bottom: 0;
  }
}

[dir] .comment__actions {
  padding-top: 8px;
}

.comment__actions button {
  display: flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  align-items: center;
  justify-content: center;
}

[dir] .comment__actions button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

[dir="ltr"] .comment__actions button {
  margin-right: auto;
  margin-left: auto;
}

[dir="rtl"] .comment__actions button {
  margin-right: auto;
  margin-left: auto;
}

/* Comment List */

[dir] .comments {
  margin-bottom: 48px;
}

.comments__callout {
  font-size: calc(16px * 0.75);
  color: #979fbd;
}

.comments__callout:empty {
  display: none;
}

.comments__list {
  list-style: none;
}

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

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

[dir] .comment-list-header {
  padding-bottom: calc(16px * 1.5 / 2);
  margin-bottom: calc(16px * 1.5);
  border-bottom: 1px solid #eceeef;
}

.comment-list-heading {
  font-size: calc(16px * 1.1);
  font-weight: 600;
}

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

.share {
  white-space: nowrap;
  list-style: none;
}

[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: 5px;
}

.share a {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  line-height: 30px;
  touch-action: manipulation;
}

[dir] .share a {
  background-color: #eceeef;
  border-color: #eceeef;
  border-radius: 8px;
}

.share a:hover {
  color: #1a1b1c;
}

[dir] .share a:hover {
  background-color: #cbd0d3;
  border-color: #cbd0d3;
}

.share a:focus {
  color: #1a1b1c;
}

[dir] .share a:focus {
  background-color: #cbd0d3;
  border-color: #cbd0d3;
}

.share a:active {
  color: #1a1b1c;
}

[dir] .share a:active {
  background-color: #cbd0d3;
  border-color: #cbd0d3;
}

[dir] .share a:active {
  background-image: none;
}

.share a:before {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Font Awesome 5 Brands";
  font-weight: 300;
}

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

.share-facebook {
  color: #3d5b95;
}

.share-facebook:hover {
  color: #2b406a;
}

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

.share-twitter {
  color: #24aadd;
}

.share-twitter:hover {
  color: #1a82a9;
}

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

.share-linkedin {
  color: #0976b4;
}

.share-linkedin:hover {
  color: #06507a;
}

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

.share-googleplus {
  color: #d23e30;
}

.share-googleplus:hover {
  color: #a22e23;
}

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

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

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

[dir] .my-activities-items {
  margin-bottom: calc(16px * 1.5 * 2);
}

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

.my-activities-items__head {
  display: none;
  color: #979fbd;
}

@media (min-width: 768px) {
  .my-activities-items__head {
    display: table-header-group;
    font-size: calc(16px * 0.75);
    font-weight: 700;
    text-transform: uppercase;
  }
}

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

.my-activities-items__row {
  display: block;
}

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

.my-activities-items__col {
  display: block;
}

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

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

  [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 (min-width: 768px) {
  .my-activities-items__request-id {
    display: none;
  }
}

.my-activities-menu ul {
  list-style: none;
}

[dir="ltr"] .my-activities-menu ul {
  padding-left: 0;
}

[dir="rtl"] .my-activities-menu ul {
  padding-right: 0;
}

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

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

.my-activities-menu__item a {
  display: block;
}

@media (min-width: 768px) {
  [dir="ltr"] .my-activities-menu__item {
    float: left;
  }

  [dir="rtl"] .my-activities-menu__item {
    float: right;
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .my-activities-menu__item + .my-activities-menu__item {
    margin-left: 12px;
  }

  [dir="rtl"] .my-activities-menu__item + .my-activities-menu__item {
    margin-right: 12px;
  }
}

[dir] .my-activities-menu--main {
  padding-bottom: calc(16px * 1.5);
  margin-bottom: calc(16px * 1.5);
  border-bottom: 1px solid #CBCBEB;
}

[dir] .my-activities-menu--main .my-activities-menu__item {
  padding: calc(12px / 2) 12px;
  background-color: #eceeef;
  border-radius: 8px;
}

@media (max-width: 767px) {
  [dir] .my-activities-menu--main .my-activities-menu__item {
    margin-bottom: calc(16px * 1.5 / 3);
  }
}

.my-activities-menu--main .my-activities-menu__item.is-active {
  font-weight: 700;
  color: rgba(68, 48, 122, 1);
}

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

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

.my-activities-menu--sub .my-activities-menu__item a {
  display: inline-block;
}

@media (min-width: 768px) {
  .my-activities-menu--sub
    .my-activities-menu__item
    + .my-activities-menu__item:before {
    font-size: 10px;
    content: "\2022";
  }

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

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

@media (max-width: 767px) {
  [dir] .my-activities-item {
    padding: calc(16px * 1.5 / 2) 12px;
    margin-bottom: calc(16px * 1.5);
    border: 1px solid #CBCBEB;
    border-radius: 8px;
  }
}

.my-activities-item__meta {
  font-size: 14px;
  color: #979fbd;
}

@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(16px * 1.25);
  }
}

@media (max-width: 767px) {
  .my-activities-item__icon {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .my-activities-item__icon {
    display: none;
  }
}

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

[dir] .request-table-toolbar {
  padding-top: 12px;
  padding-bottom: calc(12px / 2);
  margin-bottom: calc(16px * 1.5);
  background-color: #f9f9f9;
  border-radius: 8px;
}

@media (min-width: 768px) {
  [dir] .request-table-toolbar {
    padding-top: calc(12px / 2);
    padding-bottom: 12px;
  }
}

.request-table-toolbar label {
  font-size: calc(16px * 0.75);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .request-table-filters {
    display: table;
    width: 100%;
  }
}

[dir="ltr"] .request-table-filters__item {
  padding-right: 12px;
  padding-left: 12px;
}

[dir="rtl"] .request-table-filters__item {
  padding-right: 12px;
  padding-left: 12px;
}

@media (max-width: 767px) {
  [dir] .request-table-filters__item {
    margin-bottom: calc(16px * 1.5 / 2);
  }
}

@media (min-width: 768px) {
  .request-table-filters__item {
    display: table-cell;
    width: 33%;
    vertical-align: bottom;
  }
}

.request-table-organization {
  display: table;
  width: 100%;
}

.request-table-organization__col {
  display: table-cell;
  vertical-align: middle;
}

.request-table-organization__col--main {
  width: 100%;
}

[dir="ltr"] .request-table-organization__col--button {
  padding-left: calc(12px / 2);
}

[dir="rtl"] .request-table-organization__col--button {
  padding-right: calc(12px / 2);
}

.request-table-organization__col--button [role="button"] {
  height: calc(16px * 1.5 + 12px + 2px);
  line-height: calc(16px * 1.5 + 12px + 2px);
}

[dir] .request-table-organization__col--button [role="button"] {
  padding-top: 0;
  padding-bottom: 0;
}

.requests-sort-symbol {
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
}

.requests-sort-symbol:after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  color: #979fbd;
  content: "\f0d7";
}

[dir] .requests-sort-symbol:after {
  margin-bottom: 2px;
}

[dir="ltr"] .requests-sort-symbol:after {
  margin-left: 5px;
}

[dir="rtl"] .requests-sort-symbol:after {
  margin-right: 5px;
}

.requests-link {
  color: #979fbd;
  white-space: nowrap;
}

.requests-link[href*="asc"] .requests-sort-symbol:after {
  content: "\f0d8";
}

[dir] .request-page {
  margin-bottom: calc(16px * 1.5 * 2);
}

.request {
  position: relative;
}

.request-id {
  font-weight: 700;
}

[dir] .request-id {
  margin-bottom: calc(16px * 1.5 / 2);
}

.request-subject {
  font-size: calc(16px * 1.94);
}

@media (min-width: 1023px) {
  .request-subject {
    font-size: calc(16px * 2.2);
    font-weight: 300;
  }
}

.request-follow-up:empty {
  display: none;
}

.request-sidebar {
  font-size: 14px;
}

[dir] .request-sidebar {
  padding: calc(16px * 1.5) 12px 0;
  margin-bottom: calc(16px * 1.5);
  border: 1px solid #CBCBEB;
  border-radius: 8px;
}

[dir] .request-sidebar dd {
  margin-bottom: calc(16px * 1.5 / 2);
}

.request-status {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

[dir] .request-status {
  padding: 1px calc(12px / 2);
  border-radius: 8px;
}

[dir] .request-status--solved,
[dir] .request-status--closed {
  background-color: #277A58;
}

[dir] .request-status--new,
[dir] .request-status--open {
  background-color: #C73620;
}

[dir] .request-status--answered {
  background-color: #966900;
}

[dir] .new-request-page {
  margin-bottom: calc(16px * 1.5 * 2);
}

.new-request-title {
  font-size: calc(16px * 1.94);
}

@media (min-width: 768px) {
  .new-request-title {
    font-size: calc(16px * 2.2);
  }
}

@media (min-width: 1023px) {
  .new-request-title {
    font-size: calc(16px * 2.5);
  }
}

[dir] .new-request-form {
  margin-bottom: calc(16px * 1.5);
}

[dir] .upload-dropzone {
  padding: calc(16px * 1.5) 16px;
  border-color: #eceeef;
  border-width: 1px;
  border-radius: 8px;
}

.upload-dropzone {
  font-size: calc(16px * 0.75);
}

.upload-dropzone a {
  font-size: calc(16px * 0.75);
}

.error-page {
  /* padding: 10% 0; */
  /* text-align: center; */
}

[dir] .error-page__text {
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  [dir] .error-page__text {
    margin-bottom: 138px;
  }
}

[dir] .error-page__text p {
  margin-top: 16px;
}

.note {
  position: relative;
  color: rgba(68, 48, 122, 1);
}

[dir] .note {
  margin: 40px 0;
  border-radius: 8px;
}

[dir="ltr"] .note {
  padding: 19px 20px 17px 40px;
}

[dir="rtl"] .note {
  padding: 19px 40px 17px 20px;
}

.note .note-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

[dir] .note .note-title {
  margin-bottom: 4px;
}

.note:before {
  position: absolute;
  top: 21px;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
}

[dir] .note:before {
  background-repeat: no-repeat;
  background-position: center;
}

[dir="ltr"] .note:before {
  left: 17px;
}

[dir="rtl"] .note:before {
  right: 17px;
}

.note p {
  font-size: 14px;
  line-height: 1;
  line-height: 20px;
}

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

.note a:after {
  display: none !important;
}

[dir] .note-default,
[dir] .note--default {
  background-color: #F3EDFF;
}

[dir] .note-default:before,
[dir] .note--default:before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 0C0.447715 0 0 0.447716 0 1V3.26756C0.597801 3.61337 1 4.25972 1 5C1 5.74028 0.597801 6.38663 0 6.73244V9C0 9.55229 0.447716 10 1 10H13C13.5523 10 14 9.55228 14 9V6.73244C13.4022 6.38663 13 5.74028 13 5C13 4.25972 13.4022 3.61337 14 3.26756V1C14 0.447715 13.5523 0 13 0H1ZM9.78033 2.21967C10.0732 2.51256 10.0732 2.98744 9.78033 3.28033L5.28033 7.78033C4.98744 8.07322 4.51256 8.07322 4.21967 7.78033C3.92678 7.48744 3.92678 7.01256 4.21967 6.71967L8.71967 2.21967C9.01256 1.92678 9.48744 1.92678 9.78033 2.21967ZM6 3C6 3.55228 5.55228 4 5 4C4.44772 4 4 3.55228 4 3C4 2.44772 4.44772 2 5 2C5.55228 2 6 2.44772 6 3ZM10 7C10 7.55228 9.55228 8 9 8C8.44772 8 8 7.55228 8 7C8 6.44772 8.44772 6 9 6C9.55228 6 10 6.44772 10 7Z' fill='%237145D6'/%3E%3C/svg%3E%0A");
}

.note-default a,
.note--default a {
  color: rgba(113, 69, 214, 1);
}

[dir] .note-info,
[dir] .note--info {
  background-color: #f0f5ff;
}

[dir] .note-info:before,
[dir] .note--info:before {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='14' viewBox='0 0 12 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 9V2.72076C12 2.29033 11.7246 1.90819 11.3162 1.77208L6 0L0.683772 1.77208C0.27543 1.90819 0 2.29033 0 2.72076V9C0 11.5104 6 14 6 14C6 14 12 11.5104 12 9ZM9.70711 4.29289C10.0976 4.68342 10.0976 5.31658 9.70711 5.70711L5.70711 9.70711C5.31658 10.0976 4.68342 10.0976 4.29289 9.70711L2.29289 7.70711C1.90237 7.31658 1.90237 6.68342 2.29289 6.29289C2.68342 5.90237 3.31658 5.90237 3.70711 6.29289L5 7.58579L8.29289 4.29289C8.68342 3.90237 9.31658 3.90237 9.70711 4.29289Z' fill='%234988F5'/%3E%3C/svg%3E%0A");
}

.note-info a,
.note--info a {
  color: #61A5FF;
}

[dir] .note-warning,
[dir] .note--warning {
  background-color: #fff8e5;
}

[dir] .note-warning:before,
[dir] .note--warning:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='13' viewBox='0 0 16 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.25996 1.07068L1.19209 10.014C0.436568 11.3473 1.39968 13 2.93213 13H13.0679C14.6003 13 15.5634 11.3473 14.8079 10.014L9.74005 1.07068C8.97394 -0.281291 7.02608 -0.281289 6.25996 1.07068ZM8 9.00002C7.44772 9.00002 7 9.44773 7 10C7 10.5523 7.44772 11 8 11C8.55228 11 9 10.5523 9 10C9 9.44773 8.55228 9.00002 8 9.00002ZM7 4.00002C7 3.44773 7.44772 3.00002 8 3.00002C8.55228 3.00002 9 3.44773 9 4.00002V7.00002C9 7.5523 8.55228 8.00002 8 8.00002C7.44772 8.00002 7 7.5523 7 7.00002V4.00002Z' fill='%23FCC565'/%3E%3C/svg%3E%0A");
}

.note-warning a,
.note--warning a {
  color: #966900;
}

[dir] .note-success,
[dir] .note--success {
  background-color: #e8faf1;
}

[dir] .note-success:before,
[dir] .note--success:before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 7C0 10.866 3.13401 14 7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7ZM10.7071 5.70711C11.0976 5.31658 11.0976 4.68342 10.7071 4.29289C10.3166 3.90237 9.68342 3.90237 9.29289 4.29289L6 7.58579L4.70711 6.29289C4.31658 5.90237 3.68342 5.90237 3.29289 6.29289C2.90237 6.68342 2.90237 7.31658 3.29289 7.70711L5.29289 9.70711C5.68342 10.0976 6.31658 10.0976 6.70711 9.70711L10.7071 5.70711Z' fill='%2352B387'/%3E%3C/svg%3E%0A");
}

.note-success a,
.note--success a {
  color: #277A58;
}

[dir] .note-danger,
[dir] .note--danger {
  background-color: #fff0f0;
}

[dir] .note-danger:before,
[dir] .note--danger:before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14ZM5.20711 3.79289C4.81658 3.40237 4.18342 3.40237 3.79289 3.79289C3.40237 4.18342 3.40237 4.81658 3.79289 5.20711L5.58579 7L3.79289 8.79289C3.40237 9.18342 3.40237 9.81658 3.79289 10.2071C4.18342 10.5976 4.81658 10.5976 5.20711 10.2071L7 8.41421L8.79289 10.2071C9.18342 10.5976 9.81658 10.5976 10.2071 10.2071C10.5976 9.81658 10.5976 9.18342 10.2071 8.79289L8.41421 7L10.2071 5.20711C10.5976 4.81658 10.5976 4.18342 10.2071 3.79289C9.81658 3.40237 9.18342 3.40237 8.79289 3.79289L7 5.58579L5.20711 3.79289Z' fill='%23E86253'/%3E%3C/svg%3E%0A");
}

.note-danger a,
.note--danger a {
  color: #C73620;
}

[dir] .note-flag {
  background-color: #f8f8f8;
}

.note-flag:before {
  top: 20px;
  width: 16px;
  height: 16px;
}

.note-flag a {
  color: rgba(68, 48, 122, 1);
}

[dir] .note--argentina:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='-2' y='1' width='20' height='4.66667' fill='url(%23paint1_linear)'/%3E%3Crect x='-2' y='10.3333' width='20' height='4.66667' fill='url(%23paint2_linear)'/%3E%3Crect x='-2' y='5.66669' width='20' height='4.66667' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99998 9.8667C6.94801 9.8667 6.09521 9.03096 6.09521 8.00003C6.09521 6.9691 6.94801 6.13336 7.99998 6.13336C9.05195 6.13336 9.90474 6.9691 9.90474 8.00003C9.90474 9.03096 9.05195 9.8667 7.99998 9.8667Z' fill='%23DB7A2C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99998 9.39998C8.78896 9.39998 9.42855 8.77317 9.42855 7.99998C9.42855 7.22678 8.78896 6.59998 7.99998 6.59998C7.211 6.59998 6.57141 7.22678 6.57141 7.99998C6.57141 8.77317 7.211 9.39998 7.99998 9.39998Z' fill='%23F4B32E'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='-2' y1='1' x2='-2' y2='5.66667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2388BBE8'/%3E%3Cstop offset='1' stop-color='%2376ADDD'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='-2' y1='10.3333' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2388BBE8'/%3E%3Cstop offset='1' stop-color='%2376ADDD'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='-2' y1='5.66669' x2='-2' y2='10.3334' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--brazil:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint1_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.30618 8.25454C0.084469 8.11395 0.0890267 7.88312 0.30618 7.74542L7.59853 3.12121C7.82024 2.98062 8.18427 2.98351 8.40142 3.12121L15.6938 7.74542C15.9155 7.88601 15.9109 8.11684 15.6938 8.25454L8.40142 12.8787C8.17971 13.0193 7.81568 13.0164 7.59853 12.8787L0.30618 8.25454Z' fill='%23FDD216'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99996 11.2667C9.84091 11.2667 11.3333 9.80413 11.3333 8C11.3333 6.19587 9.84091 4.73334 7.99996 4.73334C6.15901 4.73334 4.66663 6.19587 4.66663 8C4.66663 9.80413 6.15901 11.2667 7.99996 11.2667Z' fill='url(%23paint2_linear)'/%3E%3Cmask id='mask1' mask-type='alpha' maskUnits='userSpaceOnUse' x='4' y='4' width='8' height='8'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99996 11.2667C9.84091 11.2667 11.3333 9.80413 11.3333 8C11.3333 6.19587 9.84091 4.73334 7.99996 4.73334C6.15901 4.73334 4.66663 6.19587 4.66663 8C4.66663 9.80413 6.15901 11.2667 7.99996 11.2667Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask1)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.57098 7.50885C4.82363 7.30835 5.96423 7.47154 7.93723 7.98732C9.34121 8.35434 10.959 9.16467 11.3292 9.61267L11.6289 9.97534L12.369 9.38797L12.0694 9.0253C11.5455 8.39132 9.7635 7.49877 8.1827 7.08552C5.71989 6.44169 4.60361 6.28198 3.97163 6.78351L3.60156 7.07719L4.20092 7.80253L4.57098 7.50885Z' fill='white'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2305AB41'/%3E%3Cstop offset='1' stop-color='%23019C39'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='4.66663' y1='4.73334' x2='4.66663' y2='11.2667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23053087'/%3E%3Cstop offset='1' stop-color='%23012877'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--chile:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='1' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='1' y='7.53333' width='20' height='7.46667' fill='url(%23paint1_linear)'/%3E%3Crect x='1' y='1' width='20' height='6.53333' fill='url(%23paint2_linear)'/%3E%3Crect x='1' y='1' width='6.66667' height='6.53333' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.33326 4.99469L3.21367 5.77686L3.62677 4.49166L2.52173 3.68986L3.89662 3.67773L4.33326 2.40002L4.76991 3.67773L6.1448 3.68986L5.03976 4.49166L5.45286 5.77686L4.33326 4.99469Z' fill='url(%23paint4_linear)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='1' y1='1' x2='1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='1' y1='7.53333' x2='1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23EA3B2E'/%3E%3Cstop offset='1' stop-color='%23D52B1E'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='1' y1='1' x2='1' y2='7.53333' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='1' y1='1' x2='1' y2='7.53333' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230B48C2'/%3E%3Cstop offset='1' stop-color='%230239A7'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear' x1='2.52173' y1='2.40002' x2='2.52173' y2='5.77686' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E ");
}

[dir] .note--colombia:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='-2' y='7.53333' width='20' height='3.73333' fill='url(%23paint1_linear)'/%3E%3Crect x='-2' y='11.2667' width='20' height='3.73333' fill='url(%23paint2_linear)'/%3E%3Crect x='-2' y='1' width='20' height='6.53333' fill='url(%23paint3_linear)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='-2' y1='7.53333' x2='-2' y2='11.2667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230748AE'/%3E%3Cstop offset='1' stop-color='%23003993'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='-2' y1='11.2667' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DE2035'/%3E%3Cstop offset='1' stop-color='%23CE1126'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='-2' y1='1' x2='-2' y2='7.53333' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFD935'/%3E%3Cstop offset='1' stop-color='%23FDD216'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--ecuador:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='-2' y='7.53333' width='20' height='3.73333' fill='url(%23paint1_linear)'/%3E%3Crect x='-2' y='11.2667' width='20' height='3.73333' fill='url(%23paint2_linear)'/%3E%3Crect x='-2' y='1' width='20' height='6.53333' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.85708 6.59998C6.39446 6.94053 6.09521 7.48273 6.09521 8.09342C6.09521 9.12435 6.94801 9.96008 7.99998 9.96008C9.05195 9.96008 9.90474 9.12435 9.90474 8.09342C9.90474 7.48273 9.6055 6.94053 9.14287 6.59998L8.47617 8.56008H7.52379L6.85708 6.59998Z' fill='url(%23paint4_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99999 6.13336L8.47618 8.4667H7.5238L7.99999 6.13336Z' fill='%235FC0DC'/%3E%3Cpath opacity='0.66' fill-rule='evenodd' clip-rule='evenodd' d='M7.21595 4.56835C7.15218 4.50585 7.05785 4.48403 6.9723 4.51198L5.54373 4.97865C5.41898 5.0194 5.35156 5.15154 5.39314 5.27379C5.43473 5.39605 5.56956 5.46212 5.69431 5.42137L6.98328 5.0003L7.83161 5.83166C7.92459 5.92279 8.07535 5.92279 8.16833 5.83166L9.01666 5.0003L10.3056 5.42137C10.4304 5.46212 10.5652 5.39605 10.6068 5.27379C10.6484 5.15154 10.581 5.0194 10.4562 4.97865L9.02764 4.51198C8.94209 4.48403 8.84776 4.50585 8.78399 4.56835L7.99997 5.33669L7.21595 4.56835Z' fill='%233F2821'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='-2' y1='7.53333' x2='-2' y2='11.2667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230748AE'/%3E%3Cstop offset='1' stop-color='%23003993'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='-2' y1='11.2667' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DE2035'/%3E%3Cstop offset='1' stop-color='%23CE1126'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='-2' y1='1' x2='-2' y2='7.53333' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFD935'/%3E%3Cstop offset='1' stop-color='%23FDD216'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear' x1='6.09521' y1='6.59998' x2='6.09521' y2='9.96008' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FBDC44'/%3E%3Cstop offset='1' stop-color='%23FFDC32'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--espana:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='1' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='1' y='1' width='20' height='3.73333' fill='url(%23paint1_linear)'/%3E%3Crect x='1' y='11.2667' width='20' height='3.73333' fill='url(%23paint2_linear)'/%3E%3Crect x='1' y='4.73334' width='20' height='6.53333' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.23804 7.53332H7.19042V7.99999H6.23804V7.53332Z' fill='%23FFEDB1'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.52943 7.06665C5.26734 7.06665 5.06521 7.27366 5.08693 7.52901L5.20642 8.93429C5.25057 9.4535 5.7121 9.86665 6.23809 9.86665C6.76774 9.86665 7.22596 9.44922 7.26975 8.93429L7.38925 7.52901C7.41144 7.26802 7.21284 7.06665 6.94674 7.06665H5.52943ZM6.23809 9.39998C5.95817 9.39998 5.70442 9.17133 5.68097 8.89554L5.56513 7.53332H6.91104L6.7952 8.89554C6.77184 9.17031 6.51833 9.39998 6.23809 9.39998Z' fill='%23A41517'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.28577 8H7.19053V8.46667H6.71434L6.23815 9.4L5.76196 8.46667H5.28577V8Z' fill='%23A41517'/%3E%3Crect x='3.85718' y='6.59998' width='0.952381' height='3.26667' fill='%23A41517'/%3E%3Crect x='7.66663' y='6.59998' width='0.952381' height='3.26667' fill='%23A41517'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.28577 6.13335C5.28577 5.87562 5.48961 5.66669 5.76642 5.66669H6.70988C6.97533 5.66669 7.19053 5.88316 7.19053 6.13335V6.3645C7.19053 6.49457 7.08812 6.60002 6.95697 6.60002H5.51933C5.39034 6.60002 5.28577 6.50014 5.28577 6.3645V6.13335Z' fill='%23A41517'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='1' y1='1' x2='1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='1' y1='1' x2='1' y2='4.73333' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DD172C'/%3E%3Cstop offset='1' stop-color='%23C60B1F'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='1' y1='11.2667' x2='1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DD172C'/%3E%3Cstop offset='1' stop-color='%23C60B1F'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='1' y1='4.73334' x2='1' y2='11.2667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FFD133'/%3E%3Cstop offset='1' stop-color='%23FFC500'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--mexico:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='7.5238' y='1' width='10.4762' height='14' fill='url(%23paint1_linear)'/%3E%3Crect x='-2' y='1' width='6.66667' height='14' fill='url(%23paint2_linear)'/%3E%3Crect x='4.66663' y='1' width='6.66667' height='14' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.80642 9.55266C6.07761 9.13823 5.61902 8.37465 5.61902 7.53332C5.61902 7.27558 5.83222 7.06665 6.09521 7.06665C6.3582 7.06665 6.5714 7.27558 6.5714 7.53332C6.5714 8.03851 6.84633 8.49628 7.2844 8.74538C7.51187 8.87473 7.58927 9.1603 7.45729 9.38323C7.3253 9.60615 7.03389 9.68201 6.80642 9.55266ZM10.3809 7.53332C10.3809 8.33873 9.96076 9.07436 9.28143 9.50014C9.05988 9.63901 8.7654 9.57557 8.6237 9.35845C8.482 9.14132 8.54674 8.85274 8.76829 8.71387C9.17675 8.45786 9.42854 8.01702 9.42854 7.53332C9.42854 7.27558 9.64174 7.06665 9.90473 7.06665C10.1677 7.06665 10.3809 7.27558 10.3809 7.53332Z' fill='%238C9157'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99999 8.46669C8.52597 8.46669 8.95237 7.83989 8.95237 7.06669C8.95237 6.29349 8.52597 5.66669 7.99999 5.66669C7.474 5.66669 7.04761 6.29349 7.04761 7.06669C7.04761 7.83989 7.474 8.46669 7.99999 8.46669Z' fill='%23C59262'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='7.5238' y1='1' x2='7.5238' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E3283E'/%3E%3Cstop offset='1' stop-color='%23CC162C'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23128A60'/%3E%3Cstop offset='1' stop-color='%230B6848'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='4.66663' y1='1' x2='4.66663' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--panama:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect y='2' width='16' height='11' fill='url(%23paint0_linear)'/%3E%3Crect y='1' width='16' height='6' fill='url(%23paint1_linear)'/%3E%3Crect y='7' width='16' height='8' fill='url(%23paint2_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1V7H8V15H16V7H8V1H0Z' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.5 5.33829L3.57295 6L3.885 4.86847L3 4.1459L4.11991 4.10829L4.5 3L4.88009 4.10829L6 4.1459L5.115 4.86847L5.42705 6L4.5 5.33829Z' fill='url(%23paint4_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5 11.3383L10.5729 12L10.885 10.8685L10 10.1459L11.1199 10.1083L11.5 9L11.8801 10.1083L13 10.1459L12.115 10.8685L12.4271 12L11.5 11.3383Z' fill='url(%23paint5_linear)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='0' y1='2' x2='0' y2='13' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='0' y1='1' x2='0' y2='7' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E52448'/%3E%3Cstop offset='1' stop-color='%23D01739'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='0' y1='7' x2='0' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%231367AE'/%3E%3Cstop offset='1' stop-color='%230A5492'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='0' y1='1' x2='0' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear' x1='3' y1='3' x2='3' y2='6' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%231367AE'/%3E%3Cstop offset='1' stop-color='%230A5492'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear' x1='10' y1='9' x2='10' y2='12' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E52448'/%3E%3Cstop offset='1' stop-color='%23D01739'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--peru:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='7.5238' y='1' width='10.4762' height='14' fill='url(%23paint1_linear)'/%3E%3Crect x='-2' y='1' width='6.66667' height='14' fill='url(%23paint2_linear)'/%3E%3Crect x='4.66675' y='1' width='6.66667' height='14' fill='url(%23paint3_linear)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='7.5238' y1='1' x2='7.5238' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E82438'/%3E%3Cstop offset='1' stop-color='%23D7172B'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E82438'/%3E%3Cstop offset='1' stop-color='%23D7172B'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='4.66675' y1='1' x2='4.66675' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--portugal:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-1' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='-1' y='1' width='20' height='14' fill='url(%23paint1_linear)'/%3E%3Crect x='-1' y='1' width='7.61905' height='14' fill='url(%23paint2_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.76196 8.00001C3.76196 9.54641 5.04115 10.8 6.61911 10.8C8.19706 10.8 9.47625 9.54641 9.47625 8.00001C9.47625 6.45361 8.19706 5.20001 6.61911 5.20001C5.04115 5.20001 3.76196 6.45361 3.76196 8.00001ZM8.52387 8.00001C8.52387 9.03094 7.67108 9.86668 6.61911 9.86668C5.56713 9.86668 4.71434 9.03094 4.71434 8.00001C4.71434 6.96908 5.56713 6.13335 6.61911 6.13335C7.67108 6.13335 8.52387 6.96908 8.52387 8.00001Z' fill='url(%23paint3_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.66663 6.8387C5.66663 6.70686 5.76903 6.59998 5.90019 6.59998H7.33783C7.46682 6.59998 7.57139 6.70632 7.57139 6.8387V8.46762C7.57139 8.98254 7.14866 9.39998 6.61901 9.39998C6.09302 9.39998 5.66663 8.98683 5.66663 8.46762V6.8387Z' fill='url(%23paint4_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.61901 8.46665C6.88201 8.46665 7.0952 7.79105 7.0952 7.53332C7.0952 7.27558 6.88201 7.06665 6.61901 7.06665C6.35602 7.06665 6.14282 7.27558 6.14282 7.53332C6.14282 7.79105 6.35602 8.46665 6.61901 8.46665Z' fill='url(%23paint5_linear)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-1' y1='1' x2='-1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='-1' y1='1' x2='-1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FF2936'/%3E%3Cstop offset='1' stop-color='%23FD0D1B'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='-1' y1='1' x2='-1' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23128415'/%3E%3Cstop offset='1' stop-color='%230A650C'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='3.76196' y1='5.20001' x2='3.76196' y2='10.8' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FAF94F'/%3E%3Cstop offset='1' stop-color='%23F8F736'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear' x1='5.66663' y1='6.59998' x2='5.66663' y2='9.39998' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear' x1='6.14282' y1='7.06665' x2='6.14282' y2='8.46665' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%231D50B5'/%3E%3Cstop offset='1' stop-color='%2315439D'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--dominicana:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Crect x='-2' y='1' width='20' height='14' fill='url(%23paint0_linear)'/%3E%3Crect x='-2' y='1' width='8.57143' height='5.6' fill='url(%23paint1_linear)'/%3E%3Crect x='9.42859' y='9.40002' width='8.57143' height='5.6' fill='url(%23paint2_linear)'/%3E%3Crect x='-2' y='9.40002' width='8.57143' height='5.6' fill='url(%23paint3_linear)'/%3E%3Crect x='9.42859' y='1' width='8.57143' height='5.6' fill='url(%23paint4_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.57143 6.6H-2V9.4H6.57143V15H9.42857V9.4H18V6.6H9.42857V1H6.57143V6.6Z' fill='url(%23paint5_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.98981 7.01005C6.43192 7.55678 6.43192 8.44322 6.98981 8.98995C7.5477 9.53668 8.45222 9.53668 9.01011 8.98995C9.56801 8.44322 9.56801 7.55678 9.01011 7.01005' fill='%23C93127' fill-opacity='0.2'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.99999 8.93332C8.52597 8.93332 8.95237 8.51545 8.95237 7.99998C8.95237 7.48452 8.52597 7.06665 7.99999 7.06665C7.474 7.06665 7.04761 7.48452 7.04761 7.99998C7.04761 8.51545 7.474 8.93332 7.99999 8.93332Z' fill='%23042F60'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='-2' y1='1' x2='-2' y2='6.6' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23083D7A'/%3E%3Cstop offset='1' stop-color='%23032F61'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='9.42859' y1='9.40002' x2='9.42859' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23083D7A'/%3E%3Cstop offset='1' stop-color='%23032F61'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='-2' y1='9.40002' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DF1E35'/%3E%3Cstop offset='1' stop-color='%23CC162C'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear' x1='9.42859' y1='1' x2='9.42859' y2='6.6' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DF1E35'/%3E%3Cstop offset='1' stop-color='%23CC162C'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear' x1='-2' y1='1' x2='-2' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

[dir] .note--uruguay:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='1' y='1' width='14' height='14'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Cpath d='M21 1H1V15H21V1Z' fill='url(%23paint0_linear)'/%3E%3Cpath d='M21 1H1V15H21V1Z' fill='url(%23paint1_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5238 1H21V2.86667H10.5238V1ZM10.5238 4.73333H21V6.6H10.5238V4.73333ZM10.5238 8.46667H21V10.3333H10.5238V8.46667ZM1 12.2H21V14.0667H1V12.2ZM1 1H10.5238V10.3333H1V1Z' fill='url(%23paint2_linear)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.76193 7.5249L5.12615 8.45496L4.96511 7.34667L3.98053 7.91429L4.32612 6.84728L3.18773 6.94003L3.9715 6.12564L2.90479 5.72516L3.9715 5.32468L3.18773 4.51029L4.32612 4.60304L3.98053 3.53603L4.96511 4.10365L5.12615 2.99536L5.76193 3.92542L6.3977 2.99536L6.55874 4.10365L7.54333 3.53603L7.19774 4.60304L8.33612 4.51029L7.55236 5.32468L8.61907 5.72516L7.55236 6.12564L8.33612 6.94003L7.19774 6.84728L7.54333 7.91429L6.55874 7.34667L6.3977 8.45496L5.76193 7.5249ZM5.76193 7.50698C6.76608 7.50698 7.58011 6.70923 7.58011 5.72516C7.58011 4.74109 6.76608 3.94334 5.76193 3.94334C4.75777 3.94334 3.94375 4.74109 3.94375 5.72516C3.94375 6.70923 4.75777 7.50698 5.76193 7.50698ZM5.76193 7.06666C4.97295 7.06666 4.33336 6.43986 4.33336 5.66666C4.33336 4.89346 4.97295 4.26666 5.76193 4.26666C6.55091 4.26666 7.1905 4.89346 7.1905 5.66666C7.1905 6.43986 6.55091 7.06666 5.76193 7.06666Z' fill='url(%23paint3_linear)'/%3E%3Cpath d='M4.92847 5.66667C4.92847 5.60224 4.98177 5.55001 5.04751 5.55001C5.11326 5.55001 5.16656 5.60224 5.16656 5.66667C5.16656 5.76581 5.19172 5.8611 5.2391 5.94602C5.34284 6.13197 5.54166 6.25001 5.7618 6.25001C5.99331 6.25001 6.20072 6.11937 6.299 5.9183C6.31731 5.88306 6.31731 5.88306 6.33548 5.85262C6.34203 5.8418 6.34203 5.8418 6.34832 5.83146C6.39373 5.75669 6.40778 5.72101 6.40778 5.66667C6.40778 5.60224 6.46108 5.55001 6.52683 5.55001C6.59258 5.55001 6.64588 5.60224 6.64588 5.66667C6.64588 5.77325 6.61845 5.8429 6.55293 5.95079C6.54651 5.96134 6.54651 5.96134 6.54046 5.97133C6.52525 5.99688 6.52525 5.99688 6.51373 6.0191C6.37623 6.30042 6.08581 6.48334 5.7618 6.48334C5.45374 6.48334 5.17527 6.31802 5.03019 6.05795C4.96378 5.93892 4.92847 5.80517 4.92847 5.66667ZM6.23799 5.43334C6.10649 5.43334 5.9999 5.32887 5.9999 5.20001C5.9999 5.07114 6.10649 4.96667 6.23799 4.96667C6.36949 4.96667 6.47609 5.07114 6.47609 5.20001C6.47609 5.32887 6.36949 5.43334 6.23799 5.43334ZM5.28561 5.43334C5.15411 5.43334 5.04751 5.32887 5.04751 5.20001C5.04751 5.07114 5.15411 4.96667 5.28561 4.96667C5.41711 4.96667 5.5237 5.07114 5.5237 5.20001C5.5237 5.32887 5.41711 5.43334 5.28561 5.43334Z' fill='%23C6A326'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='11' y1='1' x2='11' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='11' y1='1' x2='11' y2='15' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%230E4DC5'/%3E%3Cstop offset='1' stop-color='%23073DA6'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear' x1='11' y1='1' x2='11' y2='14.0667' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white'/%3E%3Cstop offset='1' stop-color='%23F0F0F0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear' x1='5.76193' y1='2.99536' x2='5.76193' y2='8.45496' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FED443'/%3E%3Cstop offset='1' stop-color='%23FCD036'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
}

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

[dir] .satisfaction-box {
  padding: calc(16px * 1.5) 15px;
  margin: 0 0 calc(10px * 2) 0;
  margin-top: 0;
  border-color: #CBCBEB;
  border-radius: 8px;
}

[dir] .satisfaction-box h4:last-child {
  margin-bottom: 0;
}

.satisfaction-box input[type="radio"] ~ label {
  letter-spacing: normal;
}

[dir="ltr"] .satisfaction-box input[type="radio"] ~ label {
  margin-right: 10px;
}

[dir="rtl"] .satisfaction-box input[type="radio"] ~ label {
  margin-left: 10px;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"] {
  color: #fff;
}

[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"] {
  background-color: #277A58;
  border-color: #277A58;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:hover,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:focus,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  color: #e0e0e0;
}

[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:hover,
[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:focus,
[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  background-color: #1b533c;
  border-color: #184c37;
}

[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_good"]:active {
  background-image: none;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"] {
  color: #fff;
}

[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"] {
  background-color: #C73620;
  border-color: #C73620;
}

.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:hover,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:focus,
.satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  color: #e0e0e0;
}

[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:hover,
[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:focus,
[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  background-color: #9b2a19;
  border-color: #922818;
}

[dir]
  .satisfaction-box
  input[type="radio"]
  ~ label[for="satisfaction_rating_score_bad"]:active {
  background-image: none;
}

.satisfaction-box input[type="radio"][checked="checked"][value="good"] + label {
  color: #fff !important;
}

[dir]
  .satisfaction-box
  input[type="radio"][checked="checked"][value="good"]
  + label {
  background-color: #184c37 !important;
  border-color: #184c37 !important;
}

.satisfaction-box input[type="radio"][checked="checked"][value="bad"] + label {
  color: #fff !important;
}

[dir]
  .satisfaction-box
  input[type="radio"][checked="checked"][value="bad"]
  + label {
  background-color: #922818 !important;
  border-color: #922818 !important;
}

[dir] .satisfaction-box label.disabled {
  margin-bottom: calc(16px * 1.5) !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_good"] {
  color: #277A58 !important;
}

.satisfaction-box label.disabled[for="satisfaction_rating_score_bad"] {
  color: #C73620 !important;
}

[dir] .satisfaction-comment {
  margin-top: 15px;
}

.satisfaction-box .satisfaction-submit {
  font-size: calc(16px - 5px) !important;
  color: #fff;
}

[dir] .satisfaction-box .satisfaction-submit {
  background-color: rgba(113, 69, 214, 1);
  border-color: rgba(113, 69, 214, 1);
}

[dir="ltr"] .satisfaction-box .satisfaction-submit {
  margin-left: 10px !important;
}

[dir="rtl"] .satisfaction-box .satisfaction-submit {
  margin-right: 10px !important;
}

.satisfaction-box .satisfaction-submit:hover,
.satisfaction-box .satisfaction-submit:focus,
.satisfaction-box .satisfaction-submit:active {
  color: #e0e0e0;
}

[dir] .satisfaction-box .satisfaction-submit:hover,
[dir] .satisfaction-box .satisfaction-submit:focus,
[dir] .satisfaction-box .satisfaction-submit:active {
  background-color: #572abe;
  border-color: #5328b6;
}

[dir] .satisfaction-box .satisfaction-submit:active {
  background-image: none;
}

[dir] .satisfaction-reason {
  padding-top: calc(16px * 1.5);
}

.satisfaction-box .satisfaction-cancel {
  font-size: calc(16px - 5px) !important;
  line-height: 1.5 !important;
}

.scroll-to-top {
  position: fixed;
  bottom: -50px;
  z-index: 3;
  display: none !important;
  width: 50px;
  height: 50px;
  font-size: 32px !important;
  line-height: 45px !important;
  color: #372D5E;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[dir] .scroll-to-top {
  text-align: center;
  background-color: transparent;
  border: 2px solid #372D5E;
  border-radius: 8px;
}

[dir="ltr"] .scroll-to-top {
  right: 30px;
}

[dir="rtl"] .scroll-to-top {
  left: 30px;
}

.scroll-to-top:focus,
.scroll-to-top:active {
  outline: 0;
}

.scroll-to-top.is-active {
  bottom: 30px;
}

.scroll-to-top:hover {
  color: #1f1935;
}

[dir] .scroll-to-top:hover {
  border-color: #1f1935;
}

@media (max-width: 767px) {
  .scroll-to-top {
    display: none;
  }
}

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

[dir] .embed-responsive--16by9 {
  padding-bottom: 56.25%;
}

[dir] .embed-responsive--4by3 {
  padding-bottom: 75%;
}

@-ms-viewport {
  width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: block !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm {
    display: block;
  }
}

@media (min-width: 1023px) and (max-width: 1199px) {
  .visible-md {
    display: block;
  }
}

@media (min-width: --screen-lg) {
  .visible-lg {
    display: block;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 1023px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

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

[dir] .page-header--with-border {
  border-bottom: 1px solid #CBCBEB;
}

[dir] .page-header--custom .h1 {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  [dir] .search-page .page-header--custom {
    margin-bottom: 336px;
  }
}

@media (min-width: 768px) {
  [dir] .error-page .page-header--custom {
    margin-bottom: 56px;
  }
}

[dir] .recent-articles h3 {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir] .related-articles h3 {
  margin-bottom: calc(16px * 1.5 / 2);
}

@media (min-width: 768px) {
  [dir] .recent-articles h3 {
    margin-top: calc(16px * 1.5 / 2);
  }

  [dir] .related-articles h3 {
    margin-top: calc(16px * 1.5 / 2);
  }
}

.recent-articles ul,
.related-articles ul {
  list-style: none;
}

[dir="ltr"] .recent-articles ul,
[dir="ltr"] .related-articles ul {
  padding-left: 0;
}

[dir="rtl"] .recent-articles ul,
[dir="rtl"] .related-articles ul {
  padding-right: 0;
}

[dir] .recent-articles ul > li {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir] .related-articles ul > li {
  margin-bottom: calc(16px * 1.5 / 2);
}

.recent-articles ul > li a {
  color: rgba(68, 48, 122, 1);
}

[dir] .recent-articles ul > li a {
  padding-bottom: 1px;
  border-bottom: 1px solid #CBCBEB;
}

.related-articles ul > li a {
  color: rgba(68, 48, 122, 1);
}

[dir] .related-articles ul > li a {
  padding-bottom: 1px;
  border-bottom: 1px solid #CBCBEB;
}

.recent-articles h3 {
  font-size: calc(16px * 1.25);
}

[dir] .section-articles {
  margin-bottom: calc(16px * 1.5);
}

.section-articles__title {
  font-size: 28px;
  line-height: 36px;
}

[dir] .section-articles__title {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .section-articles__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.section-articles__list {
  list-style: none;
}

[dir="ltr"] .section-articles__list {
  padding-left: 0;
}

[dir="rtl"] .section-articles__list {
  padding-right: 0;
}

[dir] .section-articles__item {
  margin-bottom: calc(16px * 1.5 / 2);
}

/*.section-articles__link {
  color: rgba(68, 48, 122, 1);
  border-bottom: 1px solid var(--hr-border);
  padding-bottom: 1px;
}*/

.related-sections__title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.01em;
}

[dir] .related-sections__title {
  margin-bottom: 24px;
}

.related-sections {
  list-style: none;
}

[dir] .related-sections {
  margin-bottom: 56px;
}

[dir="ltr"] .related-sections {
  padding-left: 0;
}

[dir="rtl"] .related-sections {
  padding-right: 0;
}

[dir] .related-sections li {
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .related-sections li .primaryLink {
    font-size: 16px;
  }
}

.profile-header {
  color: #fff;
}

[dir] .profile-header {
  padding: calc(16px * 1.5) 15px;
  margin-bottom: calc(16px * 1.5);
  text-align: center;
  background-color: rgba(68, 48, 122, 1);
  border-radius: 8px;
}

.profile-header__avatar {
  display: inline-block;
}

[dir] .profile-header__avatar {
  margin-bottom: 16px;
}

.profile-header__name {
  font-size: calc(16px * 1.94);
}

[dir] .profile-header__name {
  margin-bottom: calc(16px * 1.5 / 2);
}

.profile-header__name a {
  color: #fff;
}

@media (min-width: 768px) {
  .profile-header__name {
    font-size: calc(16px * 2.2);
    font-weight: 300;
  }
}

.profile-header__private-badge {
  display: inline-block;
}

[dir] .profile-header__private-badge {
  margin-bottom: calc(16px * 1.5);
  background-color: rgba(113, 69, 214, 1);
}

.profile-header__description {
  word-break: break-all;
  word-break: break-word;
}

.profile-stats {
  font-size: calc(16px - 2px);
  color: #979fbd;
  list-style: none;
}

[dir] .profile-stats {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir="ltr"] .profile-stats {
  padding-left: 0;
}

[dir="rtl"] .profile-stats {
  padding-right: 0;
}

[dir] .profile-stats__stat {
  margin-bottom: calc(16px * 1.5 / 4);
}

[dir="ltr"] .profile-stats__stat {
  margin-right: 12px;
}

[dir="rtl"] .profile-stats__stat {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .profile-stats__stat {
    display: block;
  }

  .profile-stats__stat:before {
    display: none;
  }
}

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

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

.profile-stats__value {
  color: #fff;
}

.profile-nav {
  overflow: hidden;
  font-size: calc(16px * 0.75);
  font-weight: 600;
}

[dir] .profile-nav {
  margin-bottom: calc(16px * 1.5);
  background-color: #CBCBEB;
  border-radius: 8px;
}

.profile-nav__items {
  list-style: none;
}

[dir] .profile-nav__items {
  margin: 0;
}

[dir="ltr"] .profile-nav__items {
  padding-left: 0;
}

[dir="rtl"] .profile-nav__items {
  padding-right: 0;
}

[dir] .profile-nav__item {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .profile-nav__item {
    display: inline-block;
    vertical-align: middle;
  }
}

.profile-nav__item a {
  display: block;
  color: rgba(68, 48, 122, 1);
}

.profile-nav__item.is-active {
  color: #fff;
}

[dir] .profile-nav__item.is-active {
  background-color: rgba(113, 69, 214, 1);
}

.profile-nav__item.is-active {
  line-height: 1;
}

[dir] .profile-nav__item.is-active {
  padding: calc(16px * 1.5 / 1.5) 12px;
}

.profile-nav__item a {
  line-height: 1;
}

[dir] .profile-nav__item a {
  padding: calc(16px * 1.5 / 1.5) 12px;
}

[dir="ltr"] .profile-nav__item:after {
  right: 12px !important;
}

[dir="rtl"] .profile-nav__item:after {
  left: 12px !important;
}

.profile-section {
  width: 100%;
}

[dir] .profile-section__header {
  margin-bottom: calc(16px * 1.5);
}

.profile-section__title {
  font-size: calc(16px * 1.94);
}

[dir] .profile-section__title {
  margin-bottom: calc(16px * 1.5 / 2);
}

.profile-section__description {
  font-size: calc(16px * 0.75);
  color: #979fbd;
}

@media (min-width: 768px) {
  [dir] .profile-section__description {
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  font-size: calc(16px * 0.75);
}

.profile-section-sorter .dropdown {
  display: inline-block;
}

@media (min-width: 768px) {
  .profile-section-sorter {
    display: table;
    width: 100%;
  }
}

@media (min-width: 768px) {
  [dir] .profile-section-sorter {
    padding-top: 0;
    border-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter__col {
    display: table-cell;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  [dir] .profile-section-sorter__col--main {
    margin-bottom: calc(16px * 1.5 / 2);
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .profile-section-sorter__col--main {
    padding-right: 12px;
  }

  [dir="rtl"] .profile-section-sorter__col--main {
    padding-left: 12px;
  }
}

@media (min-width: 768px) {
  [dir="ltr"] .profile-section-sorter__col--btn {
    text-align: right;
  }

  [dir="rtl"] .profile-section-sorter__col--btn {
    text-align: left;
  }
}

.profile-contribution {
  position: relative;

  word-wrap: break-word;
}

[dir] .profile-contribution {
  padding: calc(16px * 1.5 / 2) 15px;
  background-color: #d6d6ef;

  border-radius: 8px;
}

[dir] .profile-contribution__header {
  margin-bottom: calc(16px * 1.5 / 4);
}

[dir] .profile-contribution__status {
  margin-bottom: calc(16px * 1.5 / 4);
}

.profile-contribution__title {
  font-size: 16px;
  font-weight: 600;
}

[dir] .profile-contribution__title {
  margin-bottom: calc(16px * 1.5 / 4);
}

[dir] .profile-contribution__body {
  margin-bottom: calc(16px * 1.5 / 2);
}

.profile-contribution--list .profile-contribution__title:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .profile-contribution--list .profile-contribution__title:before {
  margin-right: 2px;
}

[dir="rtl"] .profile-contribution--list .profile-contribution__title:before {
  margin-left: 2px;
}

.profile-contribution__breadcrumbs {
  font-size: calc(16px * 0.75);
}

[dir] .profile-contribution__breadcrumbs {
  padding: 0;
  margin-bottom: calc(16px * 1.5 / 2);
}

.profile__no-activity {
  color: #979fbd;
}

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

.profile__private-activity {
  color: #979fbd;
}

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

.profile-activity-list {
  list-style: none;
}

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

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

.profile-activity {
  position: relative;
}

[dir] .profile-activity {
  margin-bottom: calc(16px * 1.5 * 1.5);
}

.profile-activity__header {
  font-size: calc(16px * 0.75);
  font-weight: 600;
}

[dir] .profile-activity__header {
  margin-bottom: calc(16px * 1.5 / 2);
}

.profile-activity__header:before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] .profile-activity__header:before {
  margin-right: 2px;
}

[dir="rtl"] .profile-activity__header:before {
  margin-left: 2px;
}

.profile-activity__avatar {
  width: 30px;
  height: 30px;
}

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

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

.profile-activity-list--articles .profile-contribution__title:before,
.profile-activity[class$="-article"] .profile-activity__header:before {
  content: "\f15c";
}

.profile-activity-list--posts .profile-contribution__title:before,
.profile-activity[class$="-post"] .profile-activity__header:before {
  content: "\f086";
}

.profile-activity-list--comments .profile-contribution__title:before,
.profile-activity[class$="-comment"] .profile-activity__header:before {
  font-weight: 400;
  content: "\f075";
}

.user-subscribe {
  display: inline-block;
}

.entry-info {
  display: flex;
  font-size: 14px;
}

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

[dir="ltr"] .entry-info__avatar {
  padding-right: 12px;
}

[dir="rtl"] .entry-info__avatar {
  padding-left: 12px;
}

.status-label {
  font-size: 12px;
  color: #fff;
}

[dir] .status-label {
  padding: 2px calc(12px / 2);
  border-radius: 8px;
}

[dir] .status-label--pending {
  background-color: #966900;
}

[dir] .status-label--with-ticket {
  background-color: rgba(113, 69, 214, 1);
}

.status-label--with-ticket:hover,
.status-label--with-ticket:focus,
.status-label--with-ticket:active {
  color: #fff;
}

[dir] .status-label--solved,
[dir] .status-label--closed {
  background-color: #277A58;
}

[dir] .status-label--new,
[dir] .status-label--open {
  background-color: #C73620;
}

[dir] .status-label--answered {
  background-color: #966900;
}

[dir] .status-label--official {
  background-color: rgba(113, 69, 214, 1);
}

[dir] .status-label--completed,
[dir] .status-label--answered {
  background-color: #277A58;
}

[dir] .status-label--planned {
  background-color: rgba(68, 48, 122, 1);
}

.status-label--not-planned {
  color: rgba(68, 48, 122, 1);
}

[dir] .status-label--not-planned {
  background-color: #CBCBEB;
}

.attachment-list {
  font-size: calc(16px * 0.75);
  list-style: none;
}

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

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

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

.attachment-list__item {
  position: relative;
}

[dir] .attachment-list__item {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir="ltr"] .attachment-list__item {
  padding-left: calc(12px * 1.5);
}

[dir="rtl"] .attachment-list__item {
  padding-right: calc(12px * 1.5);
}

[dir] .attachment-list__item:last-child {
  margin-bottom: 0;
}

.attachment-list__icon {
  position: absolute;
  top: 4px;
}

[dir="ltr"] .attachment-list__icon {
  left: 0;
}

[dir="rtl"] .attachment-list__icon {
  right: 0;
}

.promoted-articles__list {
  display: flex;
  list-style: none;
  flex-flow: row wrap;
}

[dir="ltr"] .promoted-articles__list {
  padding-left: 0;
}

[dir="rtl"] .promoted-articles__list {
  padding-right: 0;
}

/* .promoted-articles__title {
  font-weight: 400;
} */

.promoted-articles-item__title {
  display: inline-block;
  font-size: 19px;
}

[dir] .promoted-articles-item__title {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .promoted-articles-item__title {
    font-size: 16px;
  }

  [dir] .promoted-articles-item__title {
    margin-bottom: 8px;
  }
}

[dir] .callout {
  padding: calc(16px * 1.5) 20px;
  margin-bottom: calc(16px * 1.5);
  background-color: #eceeef;
}

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

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

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

[dir] .callout--transparent {
  background-color: transparent;
  border-color: #dedede;
  border-width: 1px;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
}

.callout--success {
  color: rgba(68, 48, 122, 1);
}

[dir] .callout--success {
  background-color: #bce9d7;
  border-color: #277A58;
}

.callout--success .callout__title {
  color: #277A58;
}

.callout--info {
  color: rgba(68, 48, 122, 1);
}

[dir] .callout--info {
  background-color: #fff;
  border-color: #61A5FF;
}

.callout--info .callout__title {
  color: #61A5FF;
}

.callout--warning {
  color: rgba(68, 48, 122, 1);
}

[dir] .callout--warning {
  background-color: #ffb60c;
  border-color: #966900;
}

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

.callout--danger {
  color: rgba(68, 48, 122, 1);
}

[dir] .callout--danger {
  background-color: #efa69b;
  border-color: #C73620;
}

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

.callout--primary {
  color: rgba(68, 48, 122, 1);
}

[dir] .callout--primary {
  background-color: #fff;
  border-color: rgba(113, 69, 214, 1);
}

.callout--primary .callout__title {
  color: rgba(113, 69, 214, 1);
}

[dir] .callout--dashed {
  border-style: dashed;
  border-width: 1px;
}

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

[dir] .image-with-shadow {
  box-shadow: 0 5px 15px 2px #55595c;
}

[dir] .image-with-lightbox {
  cursor: pointer;
}

.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 {
  width: 100%;
}

.image-with-video-icon:before {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  font-size: 0;
  content: "";
  transition: transform 0.6s ease;
}

[dir] .image-with-video-icon:before {
  border-style: solid;
}

[dir="ltr"] .image-with-video-icon:before {
  left: 50%;
  border-color: transparent transparent transparent #fff;
  border-width: 30px 0 30px 60px;
  transform: translate(-50%, -50%);
}

[dir="rtl"] .image-with-video-icon:before {
  right: 50%;
  border-color: transparent #fff transparent transparent;
  border-width: 30px 60px 30px 0;
  transform: translate(50%, -50%);
}

.image-with-video-icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  content: "";
}

[dir] .image-with-video-icon:after {
  background-color: rgba(0, 0, 0, 0.3);
}

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

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

[dir="ltr"] .image-with-video-icon:active:before,
[dir="ltr"] .image-with-video-icon:hover:before {
  transform: translate(-50%, -50%) scale(1.1);
}

[dir="rtl"] .image-with-video-icon:active:before,
[dir="rtl"] .image-with-video-icon:hover:before {
  transform: translate(50%, -50%) scale(1.1);
}

.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: calc(16px * 1.5 / 1.5) !important;
}

[dir="ltr"] .list-colored > li {
  padding-left: calc(12px + 30px);
}

[dir="rtl"] .list-colored > li {
  padding-right: calc(12px + 30px);
}

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

[dir] .list-colored > li:before {
  text-align: center;
  background-color: rgba(113, 69, 214, 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(113, 69, 214, 1);
  content: "\f058";
}

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

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

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

[dir] .text-info {
  background-color: #61A5FF;
}

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

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

[dir] .text-success {
  background-color: #277A58;
}

[dir] .accordion {
  padding-top: 0;
  margin-bottom: calc(16px * 1.5);
  border: 1px solid #ddd;
  border-radius: 8px;
}

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

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

[dir="ltr"] .accordion__item-title {
  padding: 15px 20px 15px 52px;
}

[dir="rtl"] .accordion__item-title {
  padding: 15px 52px 15px 20px;
}

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

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

.accordion__item-content {
  display: none;
}

[dir] .accordion__item-content {
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

[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.3s;
}

[dir] .accordion--default .accordion__item-title:before {
  margin-top: -4px;
  border-bottom: 2px solid rgba(113, 69, 214, 1);
}

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

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

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

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

[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.3s;
}

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

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

[dir] .accordion--colored .accordion__item-title:before {
  margin-top: -1px;
  background-color: #818a91;
}

[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;
  background-color: #818a91;
}

[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: #fff;
  transition: background-color 0.3s;
}

[dir] .accordion--colored .accordion__item-title--active {
  background-color: rgba(113, 69, 214, 1);
}

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

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

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

.tab {
  display: block;
}

[dir] .tab {
  padding: 30px;
  margin-top: -1px;
  border: 1px solid #ddd;
}

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

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

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

@media (min-width: 768px) {
  [dir="ltr"] .tab {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

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

[dir="ltr"] .tab:nth-child(2) {
  border-top-left-radius: 0;
}

[dir="rtl"] .tab:nth-child(2) {
  border-top-right-radius: 0;
}

.tabs-link {
  display: block;
  font-weight: 700;
  color: rgba(68, 48, 122, 1);
}

[dir] .tabs-link {
  padding: 8px 30px;
  margin: 0;
  cursor: pointer;
  border-color: transparent;
  border-style: solid;
  border-width: 1px 1px 0;
}

.tabs-link:hover {
  color: rgba(113, 69, 214, 1);
}

@media (max-width: 767px) {
  [dir] .tabs-link {
    border-top-color: #ddd;
  }

  [dir="ltr"] .tabs-link {
    border-right-color: #ddd;
    border-left-color: #ddd;
  }

  [dir="rtl"] .tabs-link {
    border-right-color: #ddd;
    border-left-color: #ddd;
  }

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

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

@media (min-width: 768px) {
  .tabs-link {
    display: inline-block;
  }
}

.is-hidden {
  display: none;
}

.tabs-link.is-active {
  color: rgba(113, 69, 214, 1);
}

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

.tabs-link.is-active:hover {
  color: rgba(113, 69, 214, 1);
}

[dir] .tabs-link.is-active:hover {
  cursor: default;
}

@media (min-width: 768px) {
  [dir] .tabs-link.is-active {
    border-bottom: 1px solid #fff;
  }

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

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

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

[dir] .tabs--colored-1 .tabs-link.is-active {
  background-color: #f7f7f9;
  border-bottom-color: #f7f7f9;
}

.tabs--colored-2 .tabs-link:hover {
  color: rgba(113, 69, 214, 1);
}

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

[dir] .tabs--colored-2 .tabs-link.is-active {
  background-color: rgba(113, 69, 214, 1);
  border-color: rgba(113, 69, 214, 1);
}

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

[dir] .tabs--colored-2 .tab {
  background-color: #f7f7f9 !important;
}

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

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

/* Community */

[dir="ltr"] .community-nav__item {
  float: left;
}

[dir="rtl"] .community-nav__item {
  float: right;
}

[dir="ltr"] .community-nav__item + .community-nav__item {
  margin-left: 12px;
}

[dir="rtl"] .community-nav__item + .community-nav__item {
  margin-right: 12px;
}

.community-nav__item.is-active {
  font-weight: 700;
}

[dir="ltr"] .community-nav__item--button {
  float: right;
}

[dir="rtl"] .community-nav__item--button {
  float: left;
}

.vote {
  width: 100%;
  max-width: 40px;
}

.vote [aria-selected="true"] {
  z-index: 2;
}

.vote-sum {
  display: block;
  font-weight: 700;
}

[dir] .vote-sum {
  padding-top: calc(16px * 1.5 / 4);
  padding-bottom: calc(16px * 1.5 / 4);
  text-align: center;
}

.vote-control {
  position: relative;
  z-index: 1;
  display: block !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: rgba(68, 48, 122, 1);
}

[dir] .vote-control {
  border-color: #CBCBEB;
}

.vote-control:hover,
.vote-control:active {
  z-index: 2;
}

[dir] .vote-control--active {
  border-color: #474747;
}

@media (min-width: 768px) {
  [dir] .topic-list-page {
    margin-bottom: calc(16px * 1.5);
  }
}

[dir="ltr"] .topic-list-item:nth-child(2n + 1) {
  clear: left;
}

[dir="rtl"] .topic-list-item:nth-child(2n + 1) {
  clear: right;
}

[dir] .topic-list-item__box {
  padding: calc(16px * 1.5) 12px;
  margin-bottom: calc(16px * 1.5);
  border: 1px solid #CBCBEB;
  border-radius: 8px;
}

[dir] .topic-list-item__title {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir] .topic-page {
  margin-bottom: calc(16px * 1.5 * 2);
}

.topic {
  display: table;
  width: 100%;
}

[dir] .topic {
  padding-bottom: calc(16px * 1.5 / 2);
  margin-bottom: calc(16px * 1.5);
  border-bottom: 1px solid #CBCBEB;
}

.topic__col {
  display: table-cell;
  vertical-align: inherit;
}

@media (min-width: 480px) {
  .topic__col {
    vertical-align: top;
  }
}

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

[dir="rtl"] .topic__col--new-post {
  text-align: left;
}

.topic__title {
  width: 100%;
  font-size: calc(16px * 2.2);
}

[dir] .topic__title {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir="ltr"] .topic-filters__item {
  margin-right: 8px;
}

[dir="rtl"] .topic-filters__item {
  margin-left: 8px;
}

@media (max-width: 767px) {
  [dir] .topic-filters__item {
    margin-bottom: 8px;
  }
}

[dir] .topic-controls {
  margin-bottom: calc(16px * 1.5 * 2);
}

@media (min-width: 768px) {
  .topic-controls {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .topic-controls__item {
    display: flex;
    align-items: center;
  }
}

[dir="ltr"] .topic-followers {
  margin-right: 16px;
}

[dir="rtl"] .topic-followers {
  margin-left: 16px;
}

.topic-controls__item--subscribe {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  [dir] .post-page {
    margin-bottom: calc(16px * 1.5 * 2);
  }
}

.post {
  position: relative;
}

[dir] .post {
  margin-bottom: calc(16px * 1.5);
}

.post__title {
  font-size: calc(16px * 1.94);
}

[dir="ltr"] .post__title {
  padding-right: calc(12px * 1.5);
}

[dir="rtl"] .post__title {
  padding-left: calc(12px * 1.5);
}

@media (min-width: 768px) {
  .post__title {
    font-size: calc(16px * 2.2);
  }
}

@media (min-width: 1023px) {
  .post__title {
    font-size: calc(16px * 2.5);
  }
}

.post-meta {
  display: table;
  width: 100%;
}

[dir] .post-meta {
  margin-bottom: calc(16px * 1.5);
}

.post-meta__col {
  display: table-cell;
  vertical-align: top;
}

.post-meta__col--main {
  width: 100%;
}

[dir="ltr"] .post-meta__col--main {
  padding-right: 12px;
}

[dir="rtl"] .post-meta__col--main {
  padding-left: 12px;
}

.post__text {
  word-wrap: break-word;
}

.post__body {
  word-break: break-word;
}

[dir="ltr"] .post__body {
  padding-right: calc(40px + 12px);
}

[dir="rtl"] .post__body {
  padding-left: calc(40px + 12px);
}

.post__body ul {
  list-style: disc;
}

[dir="ltr"] .post__body ul,
[dir="ltr"] .post__body ol {
  padding-left: 20px;
}

[dir="rtl"] .post__body ul,
[dir="rtl"] .post__body ol {
  padding-right: 20px;
}

[dir] .post__body ul ul {
  margin-top: calc(16px * 1.5 / 2);
}

[dir] .post__body ul ol {
  margin-top: calc(16px * 1.5 / 2);
}

[dir] .post__body ol ul {
  margin-top: calc(16px * 1.5 / 2);
}

[dir] .post__body ol ol {
  margin-top: calc(16px * 1.5 / 2);
}

[dir] .post__body ul li {
  margin-bottom: calc(16px * 1.5 / 2);
}

[dir] .post__body ol li {
  margin-bottom: calc(16px * 1.5 / 2);
}

.post__voting-and-actions {
  position: absolute;
  top: 0;
  width: 40px;
}

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

[dir="ltr"] .post__voting-and-actions {
  right: 0;
}

[dir="rtl"] .post__voting-and-actions {
  left: 0;
}

.post__voting-and-actions .dropdown-toggle {
  font-size: 0;
}

.post__voting-and-actions .dropdown-toggle:after {
  font-size: 16px;
  content: "\f013";
}

[dir="ltr"] .post__voting-and-actions .dropdown-toggle:after {
  margin-left: 0;
}

[dir="rtl"] .post__voting-and-actions .dropdown-toggle:after {
  margin-right: 0;
}

[dir] .post__actions {
  padding-top: 8px;
}

.post__actions .dropdown-menu {
  width: auto;
}

.post__actions .dropdown-menu [role="menuitem"] {
  white-space: nowrap;
}

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

[dir] .post-callout {
  padding: calc(16px * 1.5 / 2) 15px;
  background-color: #CBCBEB;
}

@media (max-width: 767px) {
  [dir] .post-callout {
    margin-bottom: 25px;
  }
}

.post-callout__title {
  font-size: calc(16px * 1.1);
  font-weight: 700;
}

@media (min-width: 768px) {
  [dir] .post-list-page {
    margin-bottom: calc(16px * 1.5 * 2);
  }
}

[dir] .post-list-item {
  padding-bottom: calc(16px * 1.5);
  margin-bottom: calc(16px * 1.5);
  border-bottom: 1px solid #CBCBEB;
}

@media (min-width: 768px) {
  .post-list-item {
    display: table;
    width: 100%;
  }
}

.post-list-item__title {
  font-size: calc(16px * 1.94);
}

[dir] .post-list-item__title {
  margin-bottom: calc(16px * 1.5 / 2);
}

.post-list-item__title .fa-star {
  position: relative;
  top: -4px;
  font-size: 50%;
}

@media (min-width: 768px) {
  .post-list-item__col {
    display: table-cell;
    vertical-align: top;
  }
}

@media (min-width: 768px) {
  .post-list-item__col--main {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .post-list-item__col--side {
    width: 40%;
  }

  [dir="ltr"] .post-list-item__col--side {
    text-align: right;
  }

  [dir="rtl"] .post-list-item__col--side {
    text-align: left;
  }
}

.post-info {
  font-size: 14px;
  color: #979fbd;
}

@media (min-width: 768px) {
  .post-info {
    min-width: 90px;
  }

  [dir] .post-info {
    padding: calc(12px / 2) 12px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
  }

  [dir="ltr"] .post-info {
    float: right;
  }

  [dir="rtl"] .post-info {
    float: left;
  }
}

@media (min-width: 768px) {
  .post-info__count {
    display: block;
    font-weight: 700;
    color: rgba(68, 48, 122, 1);
  }
}

[dir="ltr"] .post-info + .post-info {
  margin-right: 12px;
}

[dir="rtl"] .post-info + .post-info {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .post-info + .post-info:before {
    font-size: 10px;
    content: "\2022";
  }

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

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

.post-status {
  display: inline-block;
  font-size: 12px;
  color: #fff;
}

[dir] .post-status {
  padding: 1px calc(12px / 2);
  border-radius: 8px;
}

[dir] .post-status--completed,
[dir] .post-status--answered {
  background-color: #277A58;
}

[dir] .post-status--planned {
  background-color: rgba(68, 48, 122, 1);
}

.post-status--not-planned {
  color: rgba(68, 48, 122, 1);
}

[dir] .post-status--not-planned {
  background-color: #CBCBEB;
}

@media (min-width: 768px) {
  [dir] .new-post-page {
    margin-bottom: calc(16px * 1.5 * 2);
  }
}

.new-post-title {
  font-size: calc(16px * 1.94);
}

@media (min-width: 768px) {
  .new-post-title {
    font-size: calc(16px * 2.2);
  }
}

@media (min-width: 1023px) {
  .new-post-title {
    font-size: calc(16px * 2.5);
  }
}

[dir] .new-post-form {
  margin-bottom: calc(16px * 1.5);
}
.iframe-wrapper {
  background-color: #FFF;
  height: 100%;
  height: calc(100vh - 156px);
}
iframe {
  display: block;
  border: none;
  margin: 0 auto;
  padding: 32px 0;
  max-width: 972px;
  width: 100%;
  height: calc(100% - 64px);
}
@media screen and (min-width: 560px) {
  .iframe-video-driver{
    height:315px !important;
    width:560px !important;
    padding:0;
  }
}

.promoted-articles-custom {
  position: relative;
  z-index: 2;
  margin-top: 144px !important;
}

.promoted-articles-custom .column {
  margin-bottom: 20px;
}
.promoted-articles-custom {display: none;}