@charset "UTF-8";
/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  image-rendering:crisp-edges;
  border-style: none;
  padding:0px 0px; 
  display:block; 
  margin-left:auto; 
  margin-right:auto; 
  height:auto
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

body {
  background-color: #FFFFFF;
  color: rgba(21, 36, 48, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 10vh;                   /* spacing below buttons was 65vh */
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

a {
  color: rgba(0, 121, 163, 1);
  text-decoration: none;
}

a:visited {
  color: rgba(121, 47, 157, 1);
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}

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

input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
}

input:not([type="checkbox"]) {
  outline: none;
}

input:not([type="checkbox"]):focus {
  border: 1px solid rgba(0, 121, 163, 1);
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23CCC' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid rgba(0, 121, 163, 1);
}

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

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

textarea:focus {
  border: 1px solid rgba(0, 121, 163, 1);
}

.new_knowledge_base{                               /* added to overide ZD section knowledge-base */
    box-sizing: border-box;
    margin-bottom: 5px;
    padding: 1.3rem 0 0;
}

.header_new {                                   /* added to overide ZD section knowledge-base */
    background-color: #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
}

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

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

.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

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

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

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

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** Buttons *****/
.button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link {
  background-color: transparent;
  border: 1px solid rgba(0, 121, 163, 1);
  border-radius: 4px;
  color: rgba(0, 121, 163, 1);
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, .split-button button, .section-subscribe button, .article-subscribe button, .community-follow button, .requests-table-toolbar .organization-subscribe button, .subscriptions-subscribe button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link {
    width: auto;
  }
}

.button:visited, .split-button button:visited, .section-subscribe button:visited, .article-subscribe button:visited, .community-follow button:visited, .requests-table-toolbar .organization-subscribe button:visited, .subscriptions-subscribe button:visited, .pagination-next-link:visited, .pagination-prev-link:visited, .pagination-first-link:visited, .pagination-last-link:visited {
  color: rgba(0, 121, 163, 1);
}

.button:hover, .split-button button:hover, .section-subscribe button:hover, .article-subscribe button:hover, .community-follow button:hover, .requests-table-toolbar .organization-subscribe button:hover, .subscriptions-subscribe button:hover, .pagination-next-link:hover, .pagination-prev-link:hover, .pagination-first-link:hover, .pagination-last-link:hover, .button:active, .split-button button:active, .section-subscribe button:active, .article-subscribe button:active, .community-follow button:active, .requests-table-toolbar .organization-subscribe button:active, .subscriptions-subscribe button:active, .pagination-next-link:active, .pagination-prev-link:active, .pagination-first-link:active, .pagination-last-link:active, .button:focus, .split-button button:focus, .section-subscribe button:focus, .article-subscribe button:focus, .community-follow button:focus, .requests-table-toolbar .organization-subscribe button:focus, .subscriptions-subscribe button:focus, .pagination-next-link:focus, .pagination-prev-link:focus, .pagination-first-link:focus, .pagination-last-link:focus, .button.button-primary, .split-button button.button-primary, .section-subscribe button.button-primary, .section-subscribe button[data-selected="true"], .article-subscribe button.button-primary, .article-subscribe button[data-selected="true"], .community-follow button.button-primary, .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected="true"], .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected="true"], .button-primary.pagination-next-link, .button-primary.pagination-prev-link, .button-primary.pagination-first-link, .button-primary.pagination-last-link {
  background-color: rgba(0, 121, 163, 1);
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.button.button-primary:hover, .split-button button:hover, .section-subscribe button.button-primary:hover, .section-subscribe button:hover[data-selected="true"], .article-subscribe button.button-primary:hover, .article-subscribe button:hover[data-selected="true"], .community-follow button.button-primary:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button:hover[data-selected="true"], .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button:hover[data-selected="true"], .button-primary.pagination-next-link:hover, .button-primary.pagination-prev-link:hover, .button-primary.pagination-first-link:hover, .button-primary.pagination-last-link:hover, .button.button-primary:focus, .split-button button.button-primary:focus, .section-subscribe button.button-primary:focus, .section-subscribe button:focus[data-selected="true"], .article-subscribe button.button-primary:focus, .article-subscribe button:focus[data-selected="true"], .community-follow button.button-primary:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button:focus[data-selected="true"], .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button:focus[data-selected="true"], .button-primary.pagination-next-link:focus, .button-primary.pagination-prev-link:focus, .button-primary.pagination-first-link:focus, .button-primary.pagination-last-link:focus, .button.button-primary:active, .split-button button.button-primary:active, .section-subscribe button.button-primary:active, .section-subscribe button:active[data-selected="true"], .article-subscribe button.button-primary:active, .article-subscribe button:active[data-selected="true"], .community-follow button.button-primary:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button:active[data-selected="true"], .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button:active[data-selected="true"], .button-primary.pagination-next-link:active, .button-primary.pagination-prev-link:active, .button-primary.pagination-first-link:active, .button-primary.pagination-last-link:active {
  background-color: #002d3d;
  border-color: #002d3d;
}

.button[data-disabled], .split-button button[data-disabled], .section-subscribe button[data-disabled], .article-subscribe button[data-disabled], .community-follow button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .subscriptions-subscribe button[data-disabled], .pagination-next-link[data-disabled], .pagination-prev-link[data-disabled], .pagination-first-link[data-disabled], .pagination-last-link[data-disabled] {
  cursor: default;
}

.button-large, input[type="submit"] {
  cursor: pointer;
  background-color: rgba(0, 121, 163, 1);
  border: 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  line-height: 2.72;
  min-width: 190px;
  padding: 0 1.9286em;
  width: 100%;
}

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

.button-large:visited, input[type="submit"]:visited {
  color: rgba(255, 255, 255, 1);
}

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

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

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

.button-secondary:visited {
  color: #345977;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(21, 36, 48, 1);
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

/***** Split button *****/
.split-button {
  display: flex;
}

.split-button button {
  background-color: rgba(0, 121, 163, 1);
  border: 0;
  color: rgba(255, 255, 255, 1);
  height: 32px;
  line-height: 16px;
  outline-color: rgba(0, 121, 163, 1);
}

[dir="rtl"] .split-button button:not(:only-child):first-child {
  border-left: 1px solid rgba(255, 255, 255, 1);
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

[dir="ltr"] .split-button button:not(:only-child):first-child {
  border-right: 1px solid rgba(255, 255, 255, 1);
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}

[dir="rtl"] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}

[dir="ltr"] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

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

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

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

.table td {
  display: block;
}

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

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

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

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

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

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

.form-field input {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.form-field input:focus {
  border: 1px solid rgba(0, 121, 163, 1);
}

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

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

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

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

.form-field .nesty-input:focus {
  border: 1px solid rgba(0, 121, 163, 1);
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

.form .suggestion-list li a:visited {
  color: rgba(121, 47, 157, 1);
}

/***** Header */
/* comment out as conflicts with SnapGene css */
.header {
<!--  max-width: 1160px; -->
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

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

.logo img {                      
  max-height: 64px;
  vertical-align: middle;
}

.logo span {
  margin: 0 10px;
  color: rgba(0, 121, 163, 1);
}

.logo a {
  display: inline-block;
}

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

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}

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

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

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

.user-nav[aria-expanded="true"] > .user-nav-list li {
  display: block;
}

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

.user-nav-list {
  display: block;
  list-style: none;
}

.user-nav-list > li {
  display: inline-block;
}

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

@media (min-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}

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

.nav-wrapper-desktop a {
  border: 0;
  color: rgba(0, 121, 163, 1);
  display: none;
  font-size: 14px;
  padding: 0 20px 0 0;
  width: auto;
}

@media (min-width: 768px) {
  .nav-wrapper-desktop a {
    display: inline-block;
  }
}

[dir="rtl"] .nav-wrapper-desktop a {
  padding: 0 0 0 20px;
}

.nav-wrapper-desktop a:hover, .nav-wrapper-desktop a:focus, .nav-wrapper-desktop a:active {
  background-color: transparent;
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

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

.nav-wrapper-mobile .menu-button-mobile {
  background: none;
  border: 0;
  width: auto;
  min-width: 71px;
  cursor: pointer;
}

.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  padding: 7px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.nav-wrapper-mobile .menu-button-mobile[aria-expanded="true"] .icon-menu {
  background: #f3f3f3;
}

.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 2;
}

.nav-wrapper-mobile .menu-list-mobile[aria-expanded="false"] {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile[aria-expanded="true"] {
  display: block;
}

.nav-wrapper-mobile .menu-list-mobile-items .item {
  margin: 4px 0;
}

.nav-wrapper-mobile .menu-list-mobile-items li:empty:not(.nav-divider) {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile-items .nav-divider {
  border-bottom: 0.1px solid #ddd;
  padding: 0;
}

.nav-wrapper-mobile .menu-list-mobile-items .nav-divider:last-child {
  display: none;
}

.nav-wrapper-mobile .menu-list-mobile-items button {
  background: none;
  border: none;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(21, 36, 48, 1);
  cursor: pointer;
  text-align: start;
}

.nav-wrapper-mobile .menu-list-mobile-items button:active, .nav-wrapper-mobile .menu-list-mobile-items button:focus, .nav-wrapper-mobile .menu-list-mobile-items button:hover {
  background-color: #f3f3f3;
  text-decoration: underline;
}

.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 8px 24px;
  width: 100%;
  height: 100%;
  color: rgba(21, 36, 48, 1);
}

.nav-wrapper-mobile .menu-list-mobile-items a:active, .nav-wrapper-mobile .menu-list-mobile-items a:focus, .nav-wrapper-mobile .menu-list-mobile-items a:hover {
  background-color: #f3f3f3;
}

.nav-wrapper-mobile .menu-list-mobile-items .my-profile {
  display: flex;
  line-height: 1.5;
}

.nav-wrapper-mobile .menu-list-mobile-items .my-profile .my-profile-tooltip {
  font-size: 12px;
  color: #68737D;
}

.nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}

[dir="rtl"] .nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  margin-right: 0;
  margin-left: 8px;
}
/* end of comment out */
.skip-navigation {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  font-size: 14px;
  justify-content: center;
  left: -999px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  position: absolute;
  top: auto;
  z-index: -999;
}

[dir="rtl"] .skip-navigation {
  left: initial;
  right: -999px;
}

.skip-navigation:focus, .skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}

[dir="rtl"] .skip-navigation:focus, [dir="rtl"] .skip-navigation:active {
  left: initial;
  right: auto;
}
*/
/***** User info in header *****/
.user-info {
  display: inline-block;
}

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

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

.user-info > button {
  border: 0;
  color: rgba(0, 121, 163, 1);
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > button:hover, .user-info > button:focus {
  color: rgba(0, 121, 163, 1);
  background-color: transparent;
}

.user-info > button::after {
  color: rgba(0, 121, 163, 1);
  padding-right: 15px;
}

[dir="rtl"] .user-info > button::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

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

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

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

.avatar .icon-agent {
  color: rgba(0, 121, 163, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: rgba(255, 255, 255, 1);
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/
/* comments out conflict with sg css
.footer {
  border-top: 1px solid #ddd;
  margin-top: 10px;                  tightened was 60 px; 
  padding: 10px 0;                    /tightened was 30px 0; 
}

.footer a {
  color: #345977;
}


.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}

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

.footer-language-selector button {
  color: #fff;
  display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
  color: #345977;
}

*/

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

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

.breadcrumbs li {
  color: #345977;
  display: inline;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.breadcrumbs li a:visited {
  color: rgba(0, 121, 163, 1);
}

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

.search {
  border-color: #ddd;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
}

.search:focus-within {
  border-color: rgba(0, 121, 163, 1);
}

.search input[type="search"],
.search .clear-button {
  background-color: #fff;
  border-radius: 30px;
  border: none;
}

.search-full input[type="search"],
.search-full .clear-button {
  border-color: #fff;
}

.search input[type="search"] {
  appearance: none;
  font-size: 18px;                       /* added to increase size of placeholder*/
  -webkit-appearance: none;
  box-sizing: border-box;
  color: #666;
  flex: 1 1 auto;
  height: 40px;
  width: 100%;
}

.search input[type="search"]:focus {
  color: #555;
}

.search input[type="search"]::-webkit-search-decoration, .search input[type="search"]::-webkit-search-cancel-button, .search input[type="search"]::-webkit-search-results-button, .search input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search input[type="search"]:-webkit-autofill, .search input[type="search"]:-webkit-autofill:hover, .search input[type="search"]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.search .clear-button {
  align-items: center;
  box-sizing: border-box;
  color: #777;
  cursor: pointer;
  display: none;
  flex: none;
  justify-content: center;
  padding: 0 15px;
}

.search .clear-button:hover {
  background-color: rgba(0, 121, 163, 1);
  color: #fff;
}

.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 121, 163, 1);
}

.search-has-value .clear-button {
  display: flex;
}

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

[dir="ltr"] .search-has-value input[type="search"] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir="ltr"] .search-has-value input[type="search"]:focus {
  border-right-color: rgba(0, 121, 163, 1);
}

[dir="ltr"] .search .clear-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}

[dir="ltr"] .search .clear-button:focus {
  border-left-color: rgba(0, 121, 163, 1);
}

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

[dir="rtl"] .search-has-value input[type="search"] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}

[dir="rtl"] .search-has-value input[type="search"]:focus {
  border-left-color: rgba(0, 121, 163, 1);
}

[dir="rtl"] .search .clear-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir="rtl"] .search .clear-button:focus {
  border-right-color: rgba(0, 121, 163, 1);
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: #777;
  pointer-events: none;
}

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

/***** Hero component *****/
.hero {
  background-image: url(/hc/theming_assets/01KWJTEMZ0AXX5GKVVPKMSAN4R);
  background-position: center;
  background-size: cover;
  height: 180px;                               /* Height of top banner  was 300 */
  padding: 0 2%;
  text-align: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;                         /* Width of search box was 610 */          
  margin: 0 auto;
}

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

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

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

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

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

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

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

.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin-bottom: 55px;
}

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

.sub-nav .breadcrumbs {
  margin: 0;
}

.sub-nav .search-container {
  max-width: 300px;
  width: 100%;
}

@media (min-width: 768px) {
  .sub-nav .search-container {
    flex: 0 1 300px;
  }
}

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

/***** Support header added by moreland *****/

.support_header {
    box-sizing: border-box;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    text-align: center;
    color: #000;
/**    background-color: #f9f9f9; **/
    background-color: #2e2f30;
}

.support_description {
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.44em;
    padding-left: 1em;
    padding-right: 1em;
    margin-top: 2rem;
    margin-bottom: 0;
}

.support_title {
    text-align: center;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.2em;
    font-size: 3.625rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    color: #FFF;
}

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

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

.blocks-item {
  border: 1px solid black;
  border-radius: 4px;
  box-sizing: border-box;
  color: rgba(0, 121, 163, 1);
  display: flex;
  flex: 1 0 340px;      /* buttons <'flex-grow'> <'flex-shrink'>? || <'flex-basis'>  tweaked to make two column was 1 0 340px */
  margin: 5px 5px 5px 5px;    /* buttons <margin-top> || <margin-right> || <margin-bottom> || <margin-left> was 0 0 30px */
  max-width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 10px 10px 0px;   /* was 0 15px 30px */
  }
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: rgba(0, 121, 163, 1);
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: rgba(21, 36, 48, 1);
}

.blocks-item-link {
  color: rgba(0, 121, 163, 1);
  padding: 4px 4px;                   /* Height of buttons */
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}

.blocks-item-link:visited, .blocks-item-link:hover, .blocks-item-link:active {
  color: inherit;
  text-decoration: none;
}

.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 121, 163, 1);
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;                 /* Added to Bold button names */
}

.blocks-item-description {
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

block-item-img {
    margin: 0;
  position: relative;
}

/***** Homepage *****/
.section {
  margin-bottom: 5px;       /* reduce spacing between header and buttons */
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 5px;    /* reduce spacing between header and buttons */
  }
}

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

/***** Promoted articles (Announcements) *****/

.hannounce {padding-top: 1rem;}  /* added to override H4 and give better spacing */

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

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

.promoted-articles-item {
  flex: 1 0 auto; /* amended for wider single column */
}

@media (min-width: 1024px) {
  .promoted-articles-item {
    padding-right: 30px;
    width:100%;                          /* wider as one column */
    /* Three columns on desktop */

  }
  [dir="rtl"] .promoted-articles-item {
    padding: 0 0 0 30px;
  }

}

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

.promoted-articles-item a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;                              /* tightened Announcements list */
}

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

.promoted-articles-item:last-child a {
  border: 0;
}
/* don't need the underline at end of announcements list
@media (min-width: 1024px) {
  .promoted-articles-item:last-child a {
    border-bottom: 1px solid #ddd;
  }
  */
}

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

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

.community a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.community a:visited {
  color: rgba(121, 47, 157, 1);
}

.community a:hover, .community a:active, .community a:focus {
  color: rgba(21, 36, 48, 1);
}

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

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

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

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

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

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

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

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

.recent-activity-item-meta {
  color: rgba(21, 36, 48, 1);
  margin: 15px 0 0 0;
  float: none;
}

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

.recent-activity-item-time, .recent-activity-item-comment {
  display: inline-block;
  font-size: 13px;
}

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

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

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

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

.recent-activity-controls a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.recent-activity-controls a:visited {
  color: rgba(121, 47, 157, 1);
}

.recent-activity-controls a:hover, .recent-activity-controls a:active, .recent-activity-controls a:focus {
  color: rgba(21, 36, 48, 1);
}

.recent-activity-accessibility-label {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: rgba(0, 121, 163, 1);
  width: 16px;
  height: 16px;
}

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

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

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

.category-content {
  flex: 1;
}

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

.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

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

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

.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.section-tree-title a {
  color: rgba(21, 36, 48, 1);
}

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

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

.article-list-item a {
  color: rgba(21, 36, 48, 1);
}

.icon-star {
  color: rgba(0, 121, 163, 1);
  font-size: 18px;
}

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

.section-content {
  flex: 1;
}

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

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

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: rgba(21, 36, 48, 1);
  display: flex;
  justify-content: space-between;
}

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

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

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

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

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

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

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

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

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

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

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

.article-title .icon-lock {
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

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

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

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

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

.article-body a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.article-body a:visited {
  color: rgba(121, 47, 157, 1);
}

.article-body a:hover, .article-body a:active, .article-body a:focus {
  color: rgba(21, 36, 48, 1);
}

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

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

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

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

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

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

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

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

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

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

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

.article-comment-count {
  color: #345977;
}

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

.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(0, 121, 163, 1);
  width: 18px;
  height: 18px;
}

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

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

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

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

.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

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

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

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}

.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}

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

.article-more-questions a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.article-more-questions a:visited {
  color: rgba(121, 47, 157, 1);
}

.article-more-questions a:hover, .article-more-questions a:active, .article-more-questions a:focus {
  color: rgba(21, 36, 48, 1);
}

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

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

.article-return-to-top a {
  color: rgba(21, 36, 48, 1);
  display: block;
  padding: 20px 0;
}

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

.article-return-to-top-icon {
  transform: rotate(0.5turn);
}

.article td > p:first-child,
.article th > p:first-child {
  margin-top: 0;
}

.article td > p:last-child,
.article th > p:last-child {
  margin-bottom: 0;
}

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

.sidenav-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 16px;
  color: rgba(0, 121, 163, 1); /* added as sidenav was not honoring colors */
}

.recent-articles li, 
.related-articles li {
  margin-bottom: 15px;
/* color is incorrect, I think it is being overridden by the SnapGene style.css. Hopefully the color will come good once web team update the main SnapGene website and SnapGene.css */
}

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

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

.attachments .attachment-item .attachment-icon {
  color: rgba(21, 36, 48, 1);
  left: 0;
  position: absolute;
  top: 5px;
}

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

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

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

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

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

.share li {
  height: 25px;
  width: 25px;
}

.share a {
  color: #345977;
}

.share a:hover {
  text-decoration: none;
  color: rgba(0, 121, 163, 1);
}

.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

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

.comment-heading, .recent-articles-title,
.related-articles-title {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

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

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

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

.comment-callout a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.comment-callout a:visited {
  color: rgba(121, 47, 157, 1);
}

.comment-callout a:hover, .comment-callout a:active, .comment-callout a:focus {
  color: rgba(21, 36, 48, 1);
}

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

.comment-sorter .dropdown-toggle {
  color: #345977;
  font-size: 13px;
}

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

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

.comment-wrapper.comment-official {
  border: 1px solid rgba(0, 121, 163, 1);
  padding: 40px 20px 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

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

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

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

.comment-ccs {
  display: none;
}

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

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

.comment-attachments a {
  color: rgba(0, 121, 163, 1);
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

.comment-body a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.comment-body a:visited {
  color: rgba(121, 47, 157, 1);
}

.comment-body a:hover, .comment-body a:active, .comment-body a:focus {
  color: rgba(21, 36, 48, 1);
}

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

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

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

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

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

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

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

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

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

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

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

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

.vote-up svg {
  transform: scale(1, -1);
}

.vote-up:hover,
.vote-down:hover {
  color: rgba(0, 121, 163, 1);
}

.vote-up, .vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #345977;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(0, 121, 163, 1);
}

.vote-voted:hover {
  color: #002d3d;
}

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

.actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}

.community-featured-posts .title {
  font-size: 18px;
  font-weight: 600;
}

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

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

.community-header .title {
  margin-bottom: 0;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow button:hover {
  background-color: rgba(0, 121, 163, 1);
}

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

.community-follow button[data-selected="true"] {
  background-color: rgba(0, 121, 163, 1);
  color: rgba(255, 255, 255, 1);
}

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

.community-follow button[data-selected="true"]:hover {
  background-color: #002d3d;
  border-color: #002d3d;
}

.community-follow button::after {
  border-left: 1px solid rgba(0, 121, 163, 1);
  content: attr(data-follower-count);
  color: rgba(0, 121, 163, 1);
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

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

[dir="rtl"] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(0, 121, 163, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

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

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

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

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

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

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

.striped-list-title:visited {
  color: rgba(121, 47, 157, 1);
}

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(21, 36, 48, 1);
    display: block;
  }
}

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

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

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: rgba(0, 121, 163, 1);
}

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

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

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

.status-label-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #345977;
}

.status-label-pending, .status-label-pending-moderation {
  background-color: #1f73b7;
  text-align: center;
}

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

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

.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}

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

.status-label-request {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .status-label-request {
    max-width: 150px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

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

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

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

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

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

.post-body a {
  color: rgba(0, 121, 163, 1);
  text-decoration: underline;
}

.post-body a:visited {
  color: rgba(121, 47, 157, 1);
}

.post-body a:hover, .post-body a:active, .post-body a:focus {
  color: rgba(21, 36, 48, 1);
}

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

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

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

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

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

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

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

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

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

.post-comment-count {
  color: #345977;
}

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

.post-comment-count .icon-comments {
  color: rgba(0, 121, 163, 1);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}

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

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

.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
}

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

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

/***** Community Badges *****/
/* Styles labels used next to the authors of article comments, community posts, and community comments */
.community-badge-title {
  background-color: #04444d;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 8px;
  vertical-align: top;
  white-space: nowrap;
  display: inline-flex;
  line-height: 18px;
  vertical-align: middle;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}

.community-badge-container-achievements {
  display: flex;
}

.community-badge-container-achievements > .community-badge-titles {
  margin-left: calc(28px - 0.5em);
}

[dir="rtl"] .community-badge-container-achievements > .community-badge-titles {
  margin-right: calc(28px - 0.5em);
}

.community-name-and-title-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badge {
  margin: 2px;
}

.community-badge-achievements {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}

.profile-info .community-badge-achievements {
  height: 40px;
  width: 40px;
}

.community-title-badges {
  flex-basis: 100%;
  margin-top: 15px;
}

.community-badge-achievements-rest {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}

.community-badge-achievements img {
  width: 100%;
  height: 100%;
}

.community-badge-titles img {
  width: 20px;
  height: 20px;
}

.profile-info .community-badge-achievements-rest {
  line-height: 40px;
  font-size: 20px;
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}

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

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: calc(45px / 2);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}

.collapsible-nav-toggle-icon {
  display: none;
}

.collapsible-nav-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

.collapsible-nav-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}

.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(0, 121, 163, 1);
}

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

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

.collapsible-nav-list li {
  color: rgba(21, 36, 48, 1);
  line-height: 45px;
  order: 1;
}

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

.collapsible-nav-list li a {
  color: rgba(21, 36, 48, 1);
  display: block;
}

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

.collapsible-nav-list li:not([aria-selected="true"]),
.collapsible-nav-list li:not(.current) {
  display: none;
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    padding: 15px 0 11px 0;
  }
}

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

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(0, 121, 163, 1);
    order: 1;
  }
}

.collapsible-nav-list li[aria-selected="true"] a,
.collapsible-nav-list li.current a {
  color: rgba(21, 36, 48, 1);
}

.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block;
}

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

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

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

.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(45px / 2);
  transform: translateY(-50%);
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

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

[dir="rtl"] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}

.collapsible-sidebar-toggle-icon {
  display: none;
}

.collapsible-sidebar-toggle[aria-expanded="false"] .chevron-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
}

.collapsible-sidebar-toggle:focus {
  outline: none;
  border: 1px solid rgba(0, 121, 163, 1);
}

.collapsible-sidebar-body {
  display: none;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}

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

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

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

.my-activities-sub-nav {
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Following table */
@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
}

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

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

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

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

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

/* Contributions table */
.contributions-table td:last-child {
  color: #345977;
  font-size: 13px;
}

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

.no-activities {
  color: #345977;
}

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

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

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

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

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

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

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

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

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

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

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

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

.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: #345977;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}

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

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

.request-main .form-field.comment-ccs > ul[data-hc-focus="true"] {
  border: 1px solid rgba(0, 121, 163, 1);
}

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

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

.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid rgba(0, 121, 163, 1);
}

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

.request-title {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.request-details dt {
  color: #345977;
  width: 40%;
}

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

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

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

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

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

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

.pagination-next, .pagination-prev, .pagination-first, .pagination-last {
  display: inline-block;
}

.pagination-first-link, .pagination-last-link {
  padding: 0 10px;
}

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

.pagination-next-link {
  padding-right: 10px;
}

.pagination-next-text {
  margin-right: 10px;
}

[dir="rtl"] .pagination-next-link {
  padding-left: 10px;
}

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

.pagination-prev-link {
  padding-left: 10px;
}

.pagination-prev-text {
  margin-left: 10px;
}

[dir="rtl"] .pagination-prev-link {
  padding-right: 10px;
}

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

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

.meta-group-opposite {
  float: right;
}

[dir="rtl"] .meta-group-opposite {
  float: left;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #345977;
  font-size: 13px;
}

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

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

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

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

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

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

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

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

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

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

.profile-header .basic-info .name {
  margin: 0;
  line-height: 25px;
}

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

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

.user-profile-actions {
  width: 100%;
  margin-bottom: 15px;
}

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

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

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

.profile-stats .stat-label {
  color: #345977;
  flex: 0 0 100px;
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(0, 121, 163, 1);
  border-radius: 4px;
  color: rgba(0, 121, 163, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}

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

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

.profile-section {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.profile-badges-items {
  margin-top: 25px;
}

.profile-badges-item {
  border-top: 1px solid #ddd;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}

.profile-badges-item > div {
  padding-right: 12px;
  padding-left: 12px;
}

.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}

.profile-badges-item-image img {
  max-height: 40px;
}

[dir="rtl"] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}

.profile-badges-item-title, .profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}

.profile-badges-item-title {
  font-weight: 600;
}

.profile-badges-item-description, .profile-badges-item-metadata-description {
  color: #345977;
  font-size: 13px;
  margin: 0;
}

.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}

[dir="rtl"] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

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

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

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

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

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

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

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

.profile-contribution-icon {
  left: 0;
  position: absolute;
  color: #ccc;
  line-height: 25px;
}

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

.profile-contribution-icon svg {
  vertical-align: middle;
}

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

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

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

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

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

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

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

.private-activity-icon {
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.profile-activity-icon {
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  text-align: center;
  color: #ccc;
}

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

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

.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}

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

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

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

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}

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

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

.search-results-sidebar .sidenav-item {
  border-radius: 4px;
  padding: 10px 36px;
  margin-bottom: 4px;
  color: rgba(21, 36, 48, 1);
}

.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: #e9ebed;
  text-decoration: none;
}

.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}

.search-results-sidebar .sidenav-tag {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 0;
}

.search-results-sidebar .sidenav-tag .content-tag {
  background: #E9EBED;
  border-radius: 4px;
  padding: 4px 12px;
  text-decoration: none;
}

.search-results-sidebar .sidenav-tag .content-tag .label {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.000427656px;
  color: #49545C;
  flex-grow: 0;
  vertical-align: middle;
  display: inline-block;
}

.search-results-sidebar .sidenav-tag .content-tag .close-icon {
  color: #555555;
  vertical-align: middle;
  display: inline-block;
}

.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}

.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}

@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
}

.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}

.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #666;
}

.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(0, 121, 163, 1);
}

.search-results-sidebar .see-all-filters[aria-hidden="true"] {
  display: none;
}

.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}

.search-results-sidebar .see-all-filters::after {
  content: ' \2304';
  font-weight: bold;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

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

.search-results-list > li {
  padding: 20px 0;
}

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

.search-results-list > li h2 {
  margin-bottom: 0;
}

.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
}

@media (min-width: 1024px) {
  .search-results .meta-group {
    display: flex;
  }
}

.search-results .meta-group > li {
  display: block;
}

@media (min-width: 1024px) {
  .search-results .meta-group > li {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .search-results .meta-group li:first-child {
    flex: 1;
  }
}

.search-results .meta-group .meta-data {
  color: inherit;
}

[dir="ltr"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-right: 20px;
}

[dir="rtl"] .search-results .meta-group .meta-data:not(:last-child) {
  margin-left: 20px;
}

.search-results .meta-group .meta-data::after {
  content: none;
}

.search-results-description {
  margin-top: 10px;
  word-break: break-word;
}

.search-results .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}

.search-results .no-results .headline {
  color: #2F3941;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.45px;
}

.search-results .no-results .action-prompt {
  color: #68737D;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
}

.search-results .no-results .action-prompt a {
  color: #1F73B7;
}

.search-results .no-results .action-prompt a:visited {
  color: #1F73B7;
}

.search-result-title {
  font-size: 16px;
  display: inline-block;
}

[dir="ltr"] .search-result-icons {
  float: right;
}

[dir="rtl"] .search-result-icons {
  float: left;
}

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

.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(0, 121, 163, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .search-result-breadcrumbs {
    display: table-row;
  }
}

@media (min-width: 1024px) {
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

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

/***** Notifications *****/
.notification {
  border: 1px solid;
  display: table;
  font-family: sans-serif;
  font-size: 12px;
  padding: 13px 15px;
  transition: height .2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
}

.notification-icon, .notification-text, .notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  padding: 0 15px;
  width: 100%;
}

.notification + .notification {
  margin-bottom: -1px;
  position: relative;
  top: -1px;
}

/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon::before, .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 */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon::before, .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;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon::before, .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 {
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

/* Dismiss button */
.notification-dismiss, a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: .6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}

.notification-dismiss:hover {
  opacity: 1;
}

/* Inline notifications */
.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

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

.notification-inline[aria-hidden="true"] {
  display: none;
}

.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");
  margin: -2px 5px 0 0;
}

[dir="rtl"] .notification-inline.notification-error::before {
  margin: 0 0 0 5px;
}

.notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
  color: #cc3340;
}

.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

.notification-left-aligned {
  text-align: left;
  padding-left: 0;
}

html[dir="rtl"] .notification-left-aligned {
  text-align: right;
  padding-left: auto;
  padding-right: 0;
}

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

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

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

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}

.dropdown-menu [role="menuitem"] {
  color: #333;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover, .dropdown-menu [role="menuitem"]:focus {
  background: #f3f3f3;
  text-decoration: none;
  color: #333;
}

.dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  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");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role="menuitem"][hidden], .dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

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

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

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

[dir="rtl"] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}

.content-tags > p {
  color: #68737D;
  margin-top: 32px;
  margin-bottom: 4px;
}

.content-tags-add-hint {
  color: #68737D;
  font-size: 14px;
}

.content-tag-list {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
}

.content-tag-list li {
  border-right: 1px solid #C2C8CC;
  margin-bottom: 4px;
}

[dir="ltr"] .content-tag-list li {
  padding-right: 8px;
  margin-right: 8px;
}

[dir="rtl"] .content-tag-list li {
  padding-left: 8px;
  margin-left: 8px;
}

.content-tag-list li:last-child {
  border: none;
}

.row {
    background-color: #F5F7F8; /* changed color from white MDG */
	  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0); /* changed rgba(0, 0, 0, 0.1); to rgba(0, 0, 0, 0); to remove shadow MDG */
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
    padding: 10px 40px;
    border-radius: 3px;
}

/***** For screensteps embedded videos *****/

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive video {
    left:0;
    top:0;
    height: auto;
    width: 100%;
    position:absolute;
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.screensteps-wrapper:before,
.screensteps-foldable-content-parent:before,
.screensteps-document .screensteps--prompt::before,
.screensteps-document .action-block.closed .action-block--title::after,
.screensteps-document .workflow-article--step_answer .workflow-article--step-question::after,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1
}

.screensteps-wrapper:before,
.screensteps-foldable-content-parent:before,
.screensteps-document .screensteps--prompt::before,
.screensteps-document .action-block.closed .action-block--title::after,
.screensteps-document .workflow-article--step_answer .workflow-article--step-question::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: .75em;
  vertical-align: -0.0667em
}

.fa-xs {
  font-size: .75em
}

.fa-sm {
  font-size: .875em
}

.fa-1x {
  font-size: 1em
}

.fa-2x {
  font-size: 2em
}

.fa-3x {
  font-size: 3em
}

.fa-4x {
  font-size: 4em
}

.fa-5x {
  font-size: 5em
}

.fa-6x {
  font-size: 6em
}

.fa-7x {
  font-size: 7em
}

.fa-8x {
  font-size: 8em
}

.fa-9x {
  font-size: 9em
}

.fa-10x {
  font-size: 10em
}

.fa-fw {
  text-align: center;
  width: 1.25em
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0
}

.fa-ul>li {
  position: relative
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit
}

.fa-border {
  border: solid .08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em
}

.fa-pull-left {
  float: left
}

.fa-pull-right {
  float: right
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.fa-pull-left.screensteps-wrapper:before,
.fa-pull-left.screensteps-foldable-content-parent:before,
.screensteps-document .fa-pull-left.screensteps--prompt::before,
.screensteps-document .action-block.closed .fa-pull-left.action-block--title::after,
.screensteps-document .workflow-article--step_answer .fa-pull-left.workflow-article--step-question::after,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.fa-pull-right.screensteps-wrapper:before,
.fa-pull-right.screensteps-foldable-content-parent:before,
.screensteps-document .fa-pull-right.screensteps--prompt::before,
.screensteps-document .action-block.closed .fa-pull-right.action-block--title::after,
.screensteps-document .workflow-article--step_answer .fa-pull-right.workflow-article--step-question::after,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em
}

.fa-spin {
  animation: fa-spin 2s infinite linear
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8)
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg)
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg)
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg)
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1)
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%
}

.fa-stack-1x {
  line-height: inherit
}

.fa-stack-2x {
  font-size: 2em
}

.fa-inverse {
  color: #fff
}

.fa-500px:before {
  content: ""
}

.fa-accessible-icon:before {
  content: ""
}

.fa-accusoft:before {
  content: ""
}

.fa-acquisitions-incorporated:before {
  content: ""
}

.fa-ad:before {
  content: ""
}

.fa-address-book:before {
  content: ""
}

.fa-address-card:before {
  content: ""
}

.fa-adjust:before {
  content: ""
}

.fa-adn:before {
  content: ""
}

.fa-adversal:before {
  content: ""
}

.fa-affiliatetheme:before {
  content: ""
}

.fa-air-freshener:before {
  content: ""
}

.fa-airbnb:before {
  content: ""
}

.fa-algolia:before {
  content: ""
}

.fa-align-center:before {
  content: ""
}

.fa-align-justify:before {
  content: ""
}

.fa-align-left:before {
  content: ""
}

.fa-align-right:before {
  content: ""
}

.fa-alipay:before {
  content: ""
}

.fa-allergies:before {
  content: ""
}

.fa-amazon:before {
  content: ""
}

.fa-amazon-pay:before {
  content: ""
}

.fa-ambulance:before {
  content: ""
}

.fa-american-sign-language-interpreting:before {
  content: ""
}

.fa-amilia:before {
  content: ""
}

.fa-anchor:before {
  content: ""
}

.fa-android:before {
  content: ""
}

.fa-angellist:before {
  content: ""
}

.fa-angle-double-down:before {
  content: ""
}

.fa-angle-double-left:before {
  content: ""
}

.fa-angle-double-right:before {
  content: ""
}

.fa-angle-double-up:before {
  content: ""
}

.fa-angle-down:before {
  content: ""
}

.fa-angle-left:before {
  content: ""
}

.fa-angle-right:before {
  content: ""
}

.fa-angle-up:before {
  content: ""
}

.fa-angry:before {
  content: ""
}

.fa-angrycreative:before {
  content: ""
}

.fa-angular:before {
  content: ""
}

.fa-ankh:before {
  content: ""
}

.fa-app-store:before {
  content: ""
}

.fa-app-store-ios:before {
  content: ""
}

.fa-apper:before {
  content: ""
}

.fa-apple:before {
  content: ""
}

.fa-apple-alt:before {
  content: ""
}

.fa-apple-pay:before {
  content: ""
}

.fa-archive:before {
  content: ""
}

.fa-archway:before {
  content: ""
}

.fa-arrow-alt-circle-down:before {
  content: ""
}

.fa-arrow-alt-circle-left:before {
  content: ""
}

.fa-arrow-alt-circle-right:before {
  content: ""
}

.fa-arrow-alt-circle-up:before {
  content: ""
}

.fa-arrow-circle-down:before {
  content: ""
}

.fa-arrow-circle-left:before {
  content: ""
}

.fa-arrow-circle-right:before {
  content: ""
}

.fa-arrow-circle-up:before {
  content: ""
}

.fa-arrow-down:before {
  content: ""
}

.fa-arrow-left:before {
  content: ""
}

.fa-arrow-right:before {
  content: ""
}

.fa-arrow-up:before {
  content: ""
}

.fa-arrows-alt:before {
  content: ""
}

.fa-arrows-alt-h:before {
  content: ""
}

.fa-arrows-alt-v:before {
  content: ""
}

.fa-artstation:before {
  content: ""
}

.fa-assistive-listening-systems:before {
  content: ""
}

.fa-asterisk:before {
  content: ""
}

.fa-asymmetrik:before {
  content: ""
}

.fa-at:before {
  content: ""
}

.fa-atlas:before {
  content: ""
}

.fa-atlassian:before {
  content: ""
}

.fa-atom:before {
  content: ""
}

.fa-audible:before {
  content: ""
}

.fa-audio-description:before {
  content: ""
}

.fa-autoprefixer:before {
  content: ""
}

.fa-avianex:before {
  content: ""
}

.fa-aviato:before {
  content: ""
}

.fa-award:before {
  content: ""
}

.fa-aws:before {
  content: ""
}

.fa-baby:before {
  content: ""
}

.fa-baby-carriage:before {
  content: ""
}

.fa-backspace:before {
  content: ""
}

.fa-backward:before {
  content: ""
}

.fa-bacon:before {
  content: ""
}

.fa-bacteria:before {
  content: ""
}

.fa-bacterium:before {
  content: ""
}

.fa-bahai:before {
  content: ""
}

.fa-balance-scale:before {
  content: ""
}

.fa-balance-scale-left:before {
  content: ""
}

.fa-balance-scale-right:before {
  content: ""
}

.fa-ban:before {
  content: ""
}

.fa-band-aid:before {
  content: ""
}

.fa-bandcamp:before {
  content: ""
}

.fa-barcode:before {
  content: ""
}

.fa-bars:before {
  content: ""
}

.fa-baseball-ball:before {
  content: ""
}

.fa-basketball-ball:before {
  content: ""
}

.fa-bath:before {
  content: ""
}

.fa-battery-empty:before {
  content: ""
}

.fa-battery-full:before {
  content: ""
}

.fa-battery-half:before {
  content: ""
}

.fa-battery-quarter:before {
  content: ""
}

.fa-battery-three-quarters:before {
  content: ""
}

.fa-battle-net:before {
  content: ""
}

.fa-bed:before {
  content: ""
}

.fa-beer:before {
  content: ""
}

.fa-behance:before {
  content: ""
}

.fa-behance-square:before {
  content: ""
}

.fa-bell:before {
  content: ""
}

.fa-bell-slash:before {
  content: ""
}

.fa-bezier-curve:before {
  content: ""
}

.fa-bible:before {
  content: ""
}

.fa-bicycle:before {
  content: ""
}

.fa-biking:before {
  content: ""
}

.fa-bimobject:before {
  content: ""
}

.fa-binoculars:before {
  content: ""
}

.fa-biohazard:before {
  content: ""
}

.fa-birthday-cake:before {
  content: ""
}

.fa-bitbucket:before {
  content: ""
}

.fa-bitcoin:before {
  content: ""
}

.fa-bity:before {
  content: ""
}

.fa-black-tie:before {
  content: ""
}

.fa-blackberry:before {
  content: ""
}

.fa-blender:before {
  content: ""
}

.fa-blender-phone:before {
  content: ""
}

.fa-blind:before {
  content: ""
}

.fa-blog:before {
  content: ""
}

.fa-blogger:before {
  content: ""
}

.fa-blogger-b:before {
  content: ""
}

.fa-bluetooth:before {
  content: ""
}

.fa-bluetooth-b:before {
  content: ""
}

.fa-bold:before {
  content: ""
}

.fa-bolt:before {
  content: ""
}

.fa-bomb:before {
  content: ""
}

.fa-bone:before {
  content: ""
}

.fa-bong:before {
  content: ""
}

.fa-book:before {
  content: ""
}

.fa-book-dead:before {
  content: ""
}

.fa-book-medical:before {
  content: ""
}

.fa-book-open:before {
  content: ""
}

.fa-book-reader:before {
  content: ""
}

.fa-bookmark:before {
  content: ""
}

.fa-bootstrap:before {
  content: ""
}

.fa-border-all:before {
  content: ""
}

.fa-border-none:before {
  content: ""
}

.fa-border-style:before {
  content: ""
}

.fa-bowling-ball:before {
  content: ""
}

.fa-box:before {
  content: ""
}

.fa-box-open:before {
  content: ""
}

.fa-box-tissue:before {
  content: ""
}

.fa-boxes:before {
  content: ""
}

.fa-braille:before {
  content: ""
}

.fa-brain:before {
  content: ""
}

.fa-bread-slice:before {
  content: ""
}

.fa-briefcase:before {
  content: ""
}

.fa-briefcase-medical:before {
  content: ""
}

.fa-broadcast-tower:before {
  content: ""
}

.fa-broom:before {
  content: ""
}

.fa-brush:before {
  content: ""
}

.fa-btc:before {
  content: ""
}

.fa-buffer:before {
  content: ""
}

.fa-bug:before {
  content: ""
}

.fa-building:before {
  content: ""
}

.fa-bullhorn:before {
  content: ""
}

.fa-bullseye:before {
  content: ""
}

.fa-burn:before {
  content: ""
}

.fa-buromobelexperte:before {
  content: ""
}

.fa-bus:before {
  content: ""
}

.fa-bus-alt:before {
  content: ""
}

.fa-business-time:before {
  content: ""
}

.fa-buy-n-large:before {
  content: ""
}

.fa-buysellads:before {
  content: ""
}

.fa-calculator:before {
  content: ""
}

.fa-calendar:before {
  content: ""
}

.fa-calendar-alt:before {
  content: ""
}

.fa-calendar-check:before {
  content: ""
}

.fa-calendar-day:before {
  content: ""
}

.fa-calendar-minus:before {
  content: ""
}

.fa-calendar-plus:before {
  content: ""
}

.fa-calendar-times:before {
  content: ""
}

.fa-calendar-week:before {
  content: ""
}

.fa-camera:before {
  content: ""
}

.fa-camera-retro:before {
  content: ""
}

.fa-campground:before {
  content: ""
}

.fa-canadian-maple-leaf:before {
  content: ""
}

.fa-candy-cane:before {
  content: ""
}

.fa-cannabis:before {
  content: ""
}

.fa-capsules:before {
  content: ""
}

.fa-car:before {
  content: ""
}

.fa-car-alt:before {
  content: ""
}

.fa-car-battery:before {
  content: ""
}

.fa-car-crash:before {
  content: ""
}

.fa-car-side:before {
  content: ""
}

.fa-caravan:before {
  content: ""
}

.fa-caret-down:before {
  content: ""
}

.fa-caret-left:before {
  content: ""
}

.fa-caret-right:before {
  content: ""
}

.fa-caret-square-down:before {
  content: ""
}

.fa-caret-square-left:before {
  content: ""
}

.fa-caret-square-right:before {
  content: ""
}

.fa-caret-square-up:before {
  content: ""
}

.fa-caret-up:before {
  content: ""
}

.fa-carrot:before {
  content: ""
}

.fa-cart-arrow-down:before {
  content: ""
}

.fa-cart-plus:before {
  content: ""
}

.fa-cash-register:before {
  content: ""
}

.fa-cat:before {
  content: ""
}

.fa-cc-amazon-pay:before {
  content: ""
}

.fa-cc-amex:before {
  content: ""
}

.fa-cc-apple-pay:before {
  content: ""
}

.fa-cc-diners-club:before {
  content: ""
}

.fa-cc-discover:before {
  content: ""
}

.fa-cc-jcb:before {
  content: ""
}

.fa-cc-mastercard:before {
  content: ""
}

.fa-cc-paypal:before {
  content: ""
}

.fa-cc-stripe:before {
  content: ""
}

.fa-cc-visa:before {
  content: ""
}

.fa-centercode:before {
  content: ""
}

.fa-centos:before {
  content: ""
}

.fa-certificate:before {
  content: ""
}

.fa-chair:before {
  content: ""
}

.fa-chalkboard:before {
  content: ""
}

.fa-chalkboard-teacher:before {
  content: ""
}

.fa-charging-station:before {
  content: ""
}

.fa-chart-area:before {
  content: ""
}

.fa-chart-bar:before {
  content: ""
}

.fa-chart-line:before {
  content: ""
}

.fa-chart-pie:before {
  content: ""
}

.fa-check:before {
  content: ""
}

.fa-check-circle:before {
  content: ""
}

.fa-check-double:before {
  content: ""
}

.fa-check-square:before {
  content: ""
}

.fa-cheese:before {
  content: ""
}

.fa-chess:before {
  content: ""
}

.fa-chess-bishop:before {
  content: ""
}

.fa-chess-board:before {
  content: ""
}

.fa-chess-king:before {
  content: ""
}

.fa-chess-knight:before {
  content: ""
}

.fa-chess-pawn:before {
  content: ""
}

.fa-chess-queen:before {
  content: ""
}

.fa-chess-rook:before {
  content: ""
}

.fa-chevron-circle-down:before {
  content: ""
}

.fa-chevron-circle-left:before {
  content: ""
}

.fa-chevron-circle-right:before {
  content: ""
}

.fa-chevron-circle-up:before {
  content: ""
}

.fa-chevron-down:before {
  content: ""
}

.fa-chevron-left:before {
  content: ""
}

.fa-chevron-right:before {
  content: ""
}

.fa-chevron-up:before {
  content: ""
}

.fa-child:before {
  content: ""
}

.fa-chrome:before {
  content: ""
}

.fa-chromecast:before {
  content: ""
}

.fa-church:before {
  content: ""
}

.fa-circle:before {
  content: ""
}

.fa-circle-notch:before {
  content: ""
}

.fa-city:before {
  content: ""
}

.fa-clinic-medical:before {
  content: ""
}

.fa-clipboard:before {
  content: ""
}

.fa-clipboard-check:before {
  content: ""
}

.fa-clipboard-list:before {
  content: ""
}

.fa-clock:before {
  content: ""
}

.fa-clone:before {
  content: ""
}

.fa-closed-captioning:before {
  content: ""
}

.fa-cloud:before {
  content: ""
}

.fa-cloud-download-alt:before {
  content: ""
}

.fa-cloud-meatball:before {
  content: ""
}

.fa-cloud-moon:before {
  content: ""
}

.fa-cloud-moon-rain:before {
  content: ""
}

.fa-cloud-rain:before {
  content: ""
}

.fa-cloud-showers-heavy:before {
  content: ""
}

.fa-cloud-sun:before {
  content: ""
}

.fa-cloud-sun-rain:before {
  content: ""
}

.fa-cloud-upload-alt:before {
  content: ""
}

.fa-cloudflare:before {
  content: ""
}

.fa-cloudscale:before {
  content: ""
}

.fa-cloudsmith:before {
  content: ""
}

.fa-cloudversify:before {
  content: ""
}

.fa-cocktail:before {
  content: ""
}

.fa-code:before {
  content: ""
}

.fa-code-branch:before {
  content: ""
}

.fa-codepen:before {
  content: ""
}

.fa-codiepie:before {
  content: ""
}

.fa-coffee:before {
  content: ""
}

.fa-cog:before {
  content: ""
}

.fa-cogs:before {
  content: ""
}

.fa-coins:before {
  content: ""
}

.fa-columns:before {
  content: ""
}

.fa-comment:before {
  content: ""
}

.fa-comment-alt:before {
  content: ""
}

.fa-comment-dollar:before {
  content: ""
}

.fa-comment-dots:before {
  content: ""
}

.fa-comment-medical:before {
  content: ""
}

.fa-comment-slash:before {
  content: ""
}

.fa-comments:before {
  content: ""
}

.fa-comments-dollar:before {
  content: ""
}

.fa-compact-disc:before {
  content: ""
}

.fa-compass:before {
  content: ""
}

.fa-compress:before {
  content: ""
}

.fa-compress-alt:before {
  content: ""
}

.fa-compress-arrows-alt:before {
  content: ""
}

.fa-concierge-bell:before {
  content: ""
}

.fa-confluence:before {
  content: ""
}

.fa-connectdevelop:before {
  content: ""
}

.fa-contao:before {
  content: ""
}

.fa-cookie:before {
  content: ""
}

.fa-cookie-bite:before {
  content: ""
}

.fa-copy:before {
  content: ""
}

.fa-copyright:before {
  content: ""
}

.fa-cotton-bureau:before {
  content: ""
}

.fa-couch:before {
  content: ""
}

.fa-cpanel:before {
  content: ""
}

.fa-creative-commons:before {
  content: ""
}

.fa-creative-commons-by:before {
  content: ""
}

.fa-creative-commons-nc:before {
  content: ""
}

.fa-creative-commons-nc-eu:before {
  content: ""
}

.fa-creative-commons-nc-jp:before {
  content: ""
}

.fa-creative-commons-nd:before {
  content: ""
}

.fa-creative-commons-pd:before {
  content: ""
}

.fa-creative-commons-pd-alt:before {
  content: ""
}

.fa-creative-commons-remix:before {
  content: ""
}

.fa-creative-commons-sa:before {
  content: ""
}

.fa-creative-commons-sampling:before {
  content: ""
}

.fa-creative-commons-sampling-plus:before {
  content: ""
}

.fa-creative-commons-share:before {
  content: ""
}

.fa-creative-commons-zero:before {
  content: ""
}

.fa-credit-card:before {
  content: ""
}

.fa-critical-role:before {
  content: ""
}

.fa-crop:before {
  content: ""
}

.fa-crop-alt:before {
  content: ""
}

.fa-cross:before {
  content: ""
}

.fa-crosshairs:before {
  content: ""
}

.fa-crow:before {
  content: ""
}

.fa-crown:before {
  content: ""
}

.fa-crutch:before {
  content: ""
}

.fa-css3:before {
  content: ""
}

.fa-css3-alt:before {
  content: ""
}

.fa-cube:before {
  content: ""
}

.fa-cubes:before {
  content: ""
}

.fa-cut:before {
  content: ""
}

.fa-cuttlefish:before {
  content: ""
}

.fa-d-and-d:before {
  content: ""
}

.fa-d-and-d-beyond:before {
  content: ""
}

.fa-dailymotion:before {
  content: ""
}

.fa-dashcube:before {
  content: ""
}

.fa-database:before {
  content: ""
}

.fa-deaf:before {
  content: ""
}

.fa-deezer:before {
  content: ""
}

.fa-delicious:before {
  content: ""
}

.fa-democrat:before {
  content: ""
}

.fa-deploydog:before {
  content: ""
}

.fa-deskpro:before {
  content: ""
}

.fa-desktop:before {
  content: ""
}

.fa-dev:before {
  content: ""
}

.fa-deviantart:before {
  content: ""
}

.fa-dharmachakra:before {
  content: ""
}

.fa-dhl:before {
  content: ""
}

.fa-diagnoses:before {
  content: ""
}

.fa-diaspora:before {
  content: ""
}

.fa-dice:before {
  content: ""
}

.fa-dice-d20:before {
  content: ""
}

.fa-dice-d6:before {
  content: ""
}

.fa-dice-five:before {
  content: ""
}

.fa-dice-four:before {
  content: ""
}

.fa-dice-one:before {
  content: ""
}

.fa-dice-six:before {
  content: ""
}

.fa-dice-three:before {
  content: ""
}

.fa-dice-two:before {
  content: ""
}

.fa-digg:before {
  content: ""
}

.fa-digital-ocean:before {
  content: ""
}

.fa-digital-tachograph:before {
  content: ""
}

.fa-directions:before {
  content: ""
}

.fa-discord:before {
  content: ""
}

.fa-discourse:before {
  content: ""
}

.fa-disease:before {
  content: ""
}

.fa-divide:before {
  content: ""
}

.fa-dizzy:before {
  content: ""
}

.fa-dna:before {
  content: ""
}

.fa-dochub:before {
  content: ""
}

.fa-docker:before {
  content: ""
}

.fa-dog:before {
  content: ""
}

.fa-dollar-sign:before {
  content: ""
}

.fa-dolly:before {
  content: ""
}

.fa-dolly-flatbed:before {
  content: ""
}

.fa-donate:before {
  content: ""
}

.fa-door-closed:before {
  content: ""
}

.fa-door-open:before {
  content: ""
}

.fa-dot-circle:before {
  content: ""
}

.fa-dove:before {
  content: ""
}

.fa-download:before {
  content: ""
}

.fa-draft2digital:before {
  content: ""
}

.fa-drafting-compass:before {
  content: ""
}

.fa-dragon:before {
  content: ""
}

.fa-draw-polygon:before {
  content: ""
}

.fa-dribbble:before {
  content: ""
}

.fa-dribbble-square:before {
  content: ""
}

.fa-dropbox:before {
  content: ""
}

.fa-drum:before {
  content: ""
}

.fa-drum-steelpan:before {
  content: ""
}

.fa-drumstick-bite:before {
  content: ""
}

.fa-drupal:before {
  content: ""
}

.fa-dumbbell:before {
  content: ""
}

.fa-dumpster:before {
  content: ""
}

.fa-dumpster-fire:before {
  content: ""
}

.fa-dungeon:before {
  content: ""
}

.fa-dyalog:before {
  content: ""
}

.fa-earlybirds:before {
  content: ""
}

.fa-ebay:before {
  content: ""
}

.fa-edge:before {
  content: ""
}

.fa-edge-legacy:before {
  content: ""
}

.fa-edit:before {
  content: ""
}

.fa-egg:before {
  content: ""
}

.fa-eject:before {
  content: ""
}

.fa-elementor:before {
  content: ""
}

.fa-ellipsis-h:before {
  content: ""
}

.fa-ellipsis-v:before {
  content: ""
}

.fa-ello:before {
  content: ""
}

.fa-ember:before {
  content: ""
}

.fa-empire:before {
  content: ""
}

.fa-envelope:before {
  content: ""
}

.fa-envelope-open:before {
  content: ""
}

.fa-envelope-open-text:before {
  content: ""
}

.fa-envelope-square:before {
  content: ""
}

.fa-envira:before {
  content: ""
}

.fa-equals:before {
  content: ""
}

.fa-eraser:before {
  content: ""
}

.fa-erlang:before {
  content: ""
}

.fa-ethereum:before {
  content: ""
}

.fa-ethernet:before {
  content: ""
}

.fa-etsy:before {
  content: ""
}

.fa-euro-sign:before {
  content: ""
}

.fa-evernote:before {
  content: ""
}

.fa-exchange-alt:before {
  content: ""
}

.fa-exclamation:before {
  content: ""
}

.fa-exclamation-circle:before {
  content: ""
}

.fa-exclamation-triangle:before {
  content: ""
}

.fa-expand:before {
  content: ""
}

.fa-expand-alt:before {
  content: ""
}

.fa-expand-arrows-alt:before {
  content: ""
}

.fa-expeditedssl:before {
  content: ""
}

.fa-external-link-alt:before {
  content: ""
}

.fa-external-link-square-alt:before {
  content: ""
}

.fa-eye:before {
  content: ""
}

.fa-eye-dropper:before {
  content: ""
}

.fa-eye-slash:before {
  content: ""
}

.fa-facebook:before {
  content: ""
}

.fa-facebook-f:before {
  content: ""
}

.fa-facebook-messenger:before {
  content: ""
}

.fa-facebook-square:before {
  content: ""
}

.fa-fan:before {
  content: ""
}

.fa-fantasy-flight-games:before {
  content: ""
}

.fa-fast-backward:before {
  content: ""
}

.fa-fast-forward:before {
  content: ""
}

.fa-faucet:before {
  content: ""
}

.fa-fax:before {
  content: ""
}

.fa-feather:before {
  content: ""
}

.fa-feather-alt:before {
  content: ""
}

.fa-fedex:before {
  content: ""
}

.fa-fedora:before {
  content: ""
}

.fa-female:before {
  content: ""
}

.fa-fighter-jet:before {
  content: ""
}

.fa-figma:before {
  content: ""
}

.fa-file:before {
  content: ""
}

.fa-file-alt:before {
  content: ""
}

.fa-file-archive:before {
  content: ""
}

.fa-file-audio:before {
  content: ""
}

.fa-file-code:before {
  content: ""
}

.fa-file-contract:before {
  content: ""
}

.fa-file-csv:before {
  content: ""
}

.fa-file-download:before {
  content: ""
}

.fa-file-excel:before {
  content: ""
}

.fa-file-export:before {
  content: ""
}

.fa-file-image:before {
  content: ""
}

.fa-file-import:before {
  content: ""
}

.fa-file-invoice:before {
  content: ""
}

.fa-file-invoice-dollar:before {
  content: ""
}

.fa-file-medical:before {
  content: ""
}

.fa-file-medical-alt:before {
  content: ""
}

.fa-file-pdf:before {
  content: ""
}

.fa-file-powerpoint:before {
  content: ""
}

.fa-file-prescription:before {
  content: ""
}

.fa-file-signature:before {
  content: ""
}

.fa-file-upload:before {
  content: ""
}

.fa-file-video:before {
  content: ""
}

.fa-file-word:before {
  content: ""
}

.fa-fill:before {
  content: ""
}

.fa-fill-drip:before {
  content: ""
}

.fa-film:before {
  content: ""
}

.fa-filter:before {
  content: ""
}

.fa-fingerprint:before {
  content: ""
}

.fa-fire:before {
  content: ""
}

.fa-fire-alt:before {
  content: ""
}

.fa-fire-extinguisher:before {
  content: ""
}

.fa-firefox:before {
  content: ""
}

.fa-firefox-browser:before {
  content: ""
}

.fa-first-aid:before {
  content: ""
}

.fa-first-order:before {
  content: ""
}

.fa-first-order-alt:before {
  content: ""
}

.fa-firstdraft:before {
  content: ""
}

.fa-fish:before {
  content: ""
}

.fa-fist-raised:before {
  content: ""
}

.fa-flag:before {
  content: ""
}

.fa-flag-checkered:before {
  content: ""
}

.fa-flag-usa:before {
  content: ""
}

.fa-flask:before {
  content: ""
}

.fa-flickr:before {
  content: ""
}

.fa-flipboard:before {
  content: ""
}

.fa-flushed:before {
  content: ""
}

.fa-fly:before {
  content: ""
}

.fa-folder:before {
  content: ""
}

.fa-folder-minus:before {
  content: ""
}

.fa-folder-open:before {
  content: ""
}

.fa-folder-plus:before {
  content: ""
}

.fa-font:before {
  content: ""
}

.fa-font-awesome:before {
  content: ""
}

.fa-font-awesome-alt:before {
  content: ""
}

.fa-font-awesome-flag:before {
  content: ""
}

.fa-font-awesome-logo-full:before {
  content: ""
}

.fa-fonticons:before {
  content: ""
}

.fa-fonticons-fi:before {
  content: ""
}

.fa-football-ball:before {
  content: ""
}

.fa-fort-awesome:before {
  content: ""
}

.fa-fort-awesome-alt:before {
  content: ""
}

.fa-forumbee:before {
  content: ""
}

.fa-forward:before {
  content: ""
}

.fa-foursquare:before {
  content: ""
}

.fa-free-code-camp:before {
  content: ""
}

.fa-freebsd:before {
  content: ""
}

.fa-frog:before {
  content: ""
}

.fa-frown:before {
  content: ""
}

.fa-frown-open:before {
  content: ""
}

.fa-fulcrum:before {
  content: ""
}

.fa-funnel-dollar:before {
  content: ""
}

.fa-futbol:before {
  content: ""
}

.fa-galactic-republic:before {
  content: ""
}

.fa-galactic-senate:before {
  content: ""
}

.fa-gamepad:before {
  content: ""
}

.fa-gas-pump:before {
  content: ""
}

.fa-gavel:before {
  content: ""
}

.fa-gem:before {
  content: ""
}

.fa-genderless:before {
  content: ""
}

.fa-get-pocket:before {
  content: ""
}

.fa-gg:before {
  content: ""
}

.fa-gg-circle:before {
  content: ""
}

.fa-ghost:before {
  content: ""
}

.fa-gift:before {
  content: ""
}

.fa-gifts:before {
  content: ""
}

.fa-git:before {
  content: ""
}

.fa-git-alt:before {
  content: ""
}

.fa-git-square:before {
  content: ""
}

.fa-github:before {
  content: ""
}

.fa-github-alt:before {
  content: ""
}

.fa-github-square:before {
  content: ""
}

.fa-gitkraken:before {
  content: ""
}

.fa-gitlab:before {
  content: ""
}

.fa-gitter:before {
  content: ""
}

.fa-glass-cheers:before {
  content: ""
}

.fa-glass-martini:before {
  content: ""
}

.fa-glass-martini-alt:before {
  content: ""
}

.fa-glass-whiskey:before {
  content: ""
}

.fa-glasses:before {
  content: ""
}

.fa-glide:before {
  content: ""
}

.fa-glide-g:before {
  content: ""
}

.fa-globe:before {
  content: ""
}

.fa-globe-africa:before {
  content: ""
}

.fa-globe-americas:before {
  content: ""
}

.fa-globe-asia:before {
  content: ""
}

.fa-globe-europe:before {
  content: ""
}

.fa-gofore:before {
  content: ""
}

.fa-golf-ball:before {
  content: ""
}

.fa-goodreads:before {
  content: ""
}

.fa-goodreads-g:before {
  content: ""
}

.fa-google:before {
  content: ""
}

.fa-google-drive:before {
  content: ""
}

.fa-google-pay:before {
  content: ""
}

.fa-google-play:before {
  content: ""
}

.fa-google-plus:before {
  content: ""
}

.fa-google-plus-g:before {
  content: ""
}

.fa-google-plus-square:before {
  content: ""
}

.fa-google-wallet:before {
  content: ""
}

.fa-gopuram:before {
  content: ""
}

.fa-graduation-cap:before {
  content: ""
}

.fa-gratipay:before {
  content: ""
}

.fa-grav:before {
  content: ""
}

.fa-greater-than:before {
  content: ""
}

.fa-greater-than-equal:before {
  content: ""
}

.fa-grimace:before {
  content: ""
}

.fa-grin:before {
  content: ""
}

.fa-grin-alt:before {
  content: ""
}

.fa-grin-beam:before {
  content: ""
}

.fa-grin-beam-sweat:before {
  content: ""
}

.fa-grin-hearts:before {
  content: ""
}

.fa-grin-squint:before {
  content: ""
}

.fa-grin-squint-tears:before {
  content: ""
}

.fa-grin-stars:before {
  content: ""
}

.fa-grin-tears:before {
  content: ""
}

.fa-grin-tongue:before {
  content: ""
}

.fa-grin-tongue-squint:before {
  content: ""
}

.fa-grin-tongue-wink:before {
  content: ""
}

.fa-grin-wink:before {
  content: ""
}

.fa-grip-horizontal:before {
  content: ""
}

.fa-grip-lines:before {
  content: ""
}

.fa-grip-lines-vertical:before {
  content: ""
}

.fa-grip-vertical:before {
  content: ""
}

.fa-gripfire:before {
  content: ""
}

.fa-grunt:before {
  content: ""
}

.fa-guilded:before {
  content: ""
}

.fa-guitar:before {
  content: ""
}

.fa-gulp:before {
  content: ""
}

.fa-h-square:before {
  content: ""
}

.fa-hacker-news:before {
  content: ""
}

.fa-hacker-news-square:before {
  content: ""
}

.fa-hackerrank:before {
  content: ""
}

.fa-hamburger:before {
  content: ""
}

.fa-hammer:before {
  content: ""
}

.fa-hamsa:before {
  content: ""
}

.fa-hand-holding:before {
  content: ""
}

.fa-hand-holding-heart:before {
  content: ""
}

.fa-hand-holding-medical:before {
  content: ""
}

.fa-hand-holding-usd:before {
  content: ""
}

.fa-hand-holding-water:before {
  content: ""
}

.fa-hand-lizard:before {
  content: ""
}

.fa-hand-middle-finger:before {
  content: ""
}

.fa-hand-paper:before {
  content: ""
}

.fa-hand-peace:before {
  content: ""
}

.fa-hand-point-down:before {
  content: ""
}

.fa-hand-point-left:before {
  content: ""
}

.fa-hand-point-right:before {
  content: ""
}

.fa-hand-point-up:before {
  content: ""
}

.fa-hand-pointer:before {
  content: ""
}

.fa-hand-rock:before {
  content: ""
}

.fa-hand-scissors:before {
  content: ""
}

.fa-hand-sparkles:before {
  content: ""
}

.fa-hand-spock:before {
  content: ""
}

.fa-hands:before {
  content: ""
}

.fa-hands-helping:before {
  content: ""
}

.fa-hands-wash:before {
  content: ""
}

.fa-handshake:before {
  content: ""
}

.fa-handshake-alt-slash:before {
  content: ""
}

.fa-handshake-slash:before {
  content: ""
}

.fa-hanukiah:before {
  content: ""
}

.fa-hard-hat:before {
  content: ""
}

.fa-hashtag:before {
  content: ""
}

.fa-hat-cowboy:before {
  content: ""
}

.fa-hat-cowboy-side:before {
  content: ""
}

.fa-hat-wizard:before {
  content: ""
}

.fa-hdd:before {
  content: ""
}

.fa-head-side-cough:before {
  content: ""
}

.fa-head-side-cough-slash:before {
  content: ""
}

.fa-head-side-mask:before {
  content: ""
}

.fa-head-side-virus:before {
  content: ""
}

.fa-heading:before {
  content: ""
}

.fa-headphones:before {
  content: ""
}

.fa-headphones-alt:before {
  content: ""
}

.fa-headset:before {
  content: ""
}

.fa-heart:before {
  content: ""
}

.fa-heart-broken:before {
  content: ""
}

.fa-heartbeat:before {
  content: ""
}

.fa-helicopter:before {
  content: ""
}

.fa-highlighter:before {
  content: ""
}

.fa-hiking:before {
  content: ""
}

.fa-hippo:before {
  content: ""
}

.fa-hips:before {
  content: ""
}

.fa-hire-a-helper:before {
  content: ""
}

.fa-history:before {
  content: ""
}

.fa-hive:before {
  content: ""
}

.fa-hockey-puck:before {
  content: ""
}

.fa-holly-berry:before {
  content: ""
}

.fa-home:before {
  content: ""
}

.fa-hooli:before {
  content: ""
}

.fa-hornbill:before {
  content: ""
}

.fa-horse:before {
  content: ""
}

.fa-horse-head:before {
  content: ""
}

.fa-hospital:before {
  content: ""
}

.fa-hospital-alt:before {
  content: ""
}

.fa-hospital-symbol:before {
  content: ""
}

.fa-hospital-user:before {
  content: ""
}

.fa-hot-tub:before {
  content: ""
}

.fa-hotdog:before {
  content: ""
}

.fa-hotel:before {
  content: ""
}

.fa-hotjar:before {
  content: ""
}

.fa-hourglass:before {
  content: ""
}

.fa-hourglass-end:before {
  content: ""
}

.fa-hourglass-half:before {
  content: ""
}

.fa-hourglass-start:before {
  content: ""
}

.fa-house-damage:before {
  content: ""
}

.fa-house-user:before {
  content: ""
}

.fa-houzz:before {
  content: ""
}

.fa-hryvnia:before {
  content: ""
}

.fa-html5:before {
  content: ""
}

.fa-hubspot:before {
  content: ""
}

.fa-i-cursor:before {
  content: ""
}

.fa-ice-cream:before {
  content: ""
}

.fa-icicles:before {
  content: ""
}

.fa-icons:before {
  content: ""
}

.fa-id-badge:before {
  content: ""
}

.fa-id-card:before {
  content: ""
}

.fa-id-card-alt:before {
  content: ""
}

.fa-ideal:before {
  content: ""
}

.fa-igloo:before {
  content: ""
}

.fa-image:before {
  content: ""
}

.fa-images:before {
  content: ""
}

.fa-imdb:before {
  content: ""
}

.fa-inbox:before {
  content: ""
}

.fa-indent:before {
  content: ""
}

.fa-industry:before {
  content: ""
}

.fa-infinity:before {
  content: ""
}

.fa-info:before {
  content: ""
}

.fa-info-circle:before {
  content: ""
}

.fa-innosoft:before {
  content: ""
}

.fa-instagram:before {
  content: ""
}

.fa-instagram-square:before {
  content: ""
}

.fa-instalod:before {
  content: ""
}

.fa-intercom:before {
  content: ""
}

.fa-internet-explorer:before {
  content: ""
}

.fa-invision:before {
  content: ""
}

.fa-ioxhost:before {
  content: ""
}

.fa-italic:before {
  content: ""
}

.fa-itch-io:before {
  content: ""
}

.fa-itunes:before {
  content: ""
}

.fa-itunes-note:before {
  content: ""
}

.fa-java:before {
  content: ""
}

.fa-jedi:before {
  content: ""
}

.fa-jedi-order:before {
  content: ""
}

.fa-jenkins:before {
  content: ""
}

.fa-jira:before {
  content: ""
}

.fa-joget:before {
  content: ""
}

.fa-joint:before {
  content: ""
}

.fa-joomla:before {
  content: ""
}

.fa-journal-whills:before {
  content: ""
}

.fa-js:before {
  content: ""
}

.fa-js-square:before {
  content: ""
}

.fa-jsfiddle:before {
  content: ""
}

.fa-kaaba:before {
  content: ""
}

.fa-kaggle:before {
  content: ""
}

.fa-key:before {
  content: ""
}

.fa-keybase:before {
  content: ""
}

.fa-keyboard:before {
  content: ""
}

.fa-keycdn:before {
  content: ""
}

.fa-khanda:before {
  content: ""
}

.fa-kickstarter:before {
  content: ""
}

.fa-kickstarter-k:before {
  content: ""
}

.fa-kiss:before {
  content: ""
}

.fa-kiss-beam:before {
  content: ""
}

.fa-kiss-wink-heart:before {
  content: ""
}

.fa-kiwi-bird:before {
  content: ""
}

.fa-korvue:before {
  content: ""
}

.fa-landmark:before {
  content: ""
}

.fa-language:before {
  content: ""
}

.fa-laptop:before {
  content: ""
}

.fa-laptop-code:before {
  content: ""
}

.fa-laptop-house:before {
  content: ""
}

.fa-laptop-medical:before {
  content: ""
}

.fa-laravel:before {
  content: ""
}

.fa-lastfm:before {
  content: ""
}

.fa-lastfm-square:before {
  content: ""
}

.fa-laugh:before {
  content: ""
}

.fa-laugh-beam:before {
  content: ""
}

.fa-laugh-squint:before {
  content: ""
}

.fa-laugh-wink:before {
  content: ""
}

.fa-layer-group:before {
  content: ""
}

.fa-leaf:before {
  content: ""
}

.fa-leanpub:before {
  content: ""
}

.fa-lemon:before {
  content: ""
}

.fa-less:before {
  content: ""
}

.fa-less-than:before {
  content: ""
}

.fa-less-than-equal:before {
  content: ""
}

.fa-level-down-alt:before {
  content: ""
}

.fa-level-up-alt:before {
  content: ""
}

.fa-life-ring:before {
  content: ""
}

.fa-lightbulb:before {
  content: ""
}

.fa-line:before {
  content: ""
}

.fa-link:before {
  content: ""
}

.fa-linkedin:before {
  content: ""
}

.fa-linkedin-in:before {
  content: ""
}

.fa-linode:before {
  content: ""
}

.fa-linux:before {
  content: ""
}

.fa-lira-sign:before {
  content: ""
}

.fa-list:before {
  content: ""
}

.fa-list-alt:before {
  content: ""
}

.fa-list-ol:before {
  content: ""
}

.fa-list-ul:before {
  content: ""
}

.fa-location-arrow:before {
  content: ""
}

.fa-lock:before {
  content: ""
}

.fa-lock-open:before {
  content: ""
}

.fa-long-arrow-alt-down:before {
  content: ""
}

.fa-long-arrow-alt-left:before {
  content: ""
}

.fa-long-arrow-alt-right:before {
  content: ""
}

.fa-long-arrow-alt-up:before {
  content: ""
}

.fa-low-vision:before {
  content: ""
}

.fa-luggage-cart:before {
  content: ""
}

.fa-lungs:before {
  content: ""
}

.fa-lungs-virus:before {
  content: ""
}

.fa-lyft:before {
  content: ""
}

.fa-magento:before {
  content: ""
}

.fa-magic:before {
  content: ""
}

.fa-magnet:before {
  content: ""
}

.fa-mail-bulk:before {
  content: ""
}

.fa-mailchimp:before {
  content: ""
}

.fa-male:before {
  content: ""
}

.fa-mandalorian:before {
  content: ""
}

.fa-map:before {
  content: ""
}

.fa-map-marked:before {
  content: ""
}

.fa-map-marked-alt:before {
  content: ""
}

.fa-map-marker:before {
  content: ""
}

.fa-map-marker-alt:before {
  content: ""
}

.fa-map-pin:before {
  content: ""
}

.fa-map-signs:before {
  content: ""
}

.fa-markdown:before {
  content: ""
}

.fa-marker:before {
  content: ""
}

.fa-mars:before {
  content: ""
}

.fa-mars-double:before {
  content: ""
}

.fa-mars-stroke:before {
  content: ""
}

.fa-mars-stroke-h:before {
  content: ""
}

.fa-mars-stroke-v:before {
  content: ""
}

.fa-mask:before {
  content: ""
}

.fa-mastodon:before {
  content: ""
}

.fa-maxcdn:before {
  content: ""
}

.fa-mdb:before {
  content: ""
}

.fa-medal:before {
  content: ""
}

.fa-medapps:before {
  content: ""
}

.fa-medium:before {
  content: ""
}

.fa-medium-m:before {
  content: ""
}

.fa-medkit:before {
  content: ""
}

.fa-medrt:before {
  content: ""
}

.fa-meetup:before {
  content: ""
}

.fa-megaport:before {
  content: ""
}

.fa-meh:before {
  content: ""
}

.fa-meh-blank:before {
  content: ""
}

.fa-meh-rolling-eyes:before {
  content: ""
}

.fa-memory:before {
  content: ""
}

.fa-mendeley:before {
  content: ""
}

.fa-menorah:before {
  content: ""
}

.fa-mercury:before {
  content: ""
}

.fa-meteor:before {
  content: ""
}

.fa-microblog:before {
  content: ""
}

.fa-microchip:before {
  content: ""
}

.fa-microphone:before {
  content: ""
}

.fa-microphone-alt:before {
  content: ""
}

.fa-microphone-alt-slash:before {
  content: ""
}

.fa-microphone-slash:before {
  content: ""
}

.fa-microscope:before {
  content: ""
}

.fa-microsoft:before {
  content: ""
}

.fa-minus:before {
  content: ""
}

.fa-minus-circle:before {
  content: ""
}

.fa-minus-square:before {
  content: ""
}

.fa-mitten:before {
  content: ""
}

.fa-mix:before {
  content: ""
}

.fa-mixcloud:before {
  content: ""
}

.fa-mixer:before {
  content: ""
}

.fa-mizuni:before {
  content: ""
}

.fa-mobile:before {
  content: ""
}

.fa-mobile-alt:before {
  content: ""
}

.fa-modx:before {
  content: ""
}

.fa-monero:before {
  content: ""
}

.fa-money-bill:before {
  content: ""
}

.fa-money-bill-alt:before {
  content: ""
}

.fa-money-bill-wave:before {
  content: ""
}

.fa-money-bill-wave-alt:before {
  content: ""
}

.fa-money-check:before {
  content: ""
}

.fa-money-check-alt:before {
  content: ""
}

.fa-monument:before {
  content: ""
}

.fa-moon:before {
  content: ""
}

.fa-mortar-pestle:before {
  content: ""
}

.fa-mosque:before {
  content: ""
}

.fa-motorcycle:before {
  content: ""
}

.fa-mountain:before {
  content: ""
}

.fa-mouse:before {
  content: ""
}

.fa-mouse-pointer:before {
  content: ""
}

.fa-mug-hot:before {
  content: ""
}

.fa-music:before {
  content: ""
}

.fa-napster:before {
  content: ""
}

.fa-neos:before {
  content: ""
}

.fa-network-wired:before {
  content: ""
}

.fa-neuter:before {
  content: ""
}

.fa-newspaper:before {
  content: ""
}

.fa-nimblr:before {
  content: ""
}

.fa-node:before {
  content: ""
}

.fa-node-js:before {
  content: ""
}

.fa-not-equal:before {
  content: ""
}

.fa-notes-medical:before {
  content: ""
}

.fa-npm:before {
  content: ""
}

.fa-ns8:before {
  content: ""
}

.fa-nutritionix:before {
  content: ""
}

.fa-object-group:before {
  content: ""
}

.fa-object-ungroup:before {
  content: ""
}

.fa-octopus-deploy:before {
  content: ""
}

.fa-odnoklassniki:before {
  content: ""
}

.fa-odnoklassniki-square:before {
  content: ""
}

.fa-oil-can:before {
  content: ""
}

.fa-old-republic:before {
  content: ""
}

.fa-om:before {
  content: ""
}

.fa-opencart:before {
  content: ""
}

.fa-openid:before {
  content: ""
}

.fa-opera:before {
  content: ""
}

.fa-optin-monster:before {
  content: ""
}

.fa-orcid:before {
  content: ""
}

.fa-osi:before {
  content: ""
}

.fa-otter:before {
  content: ""
}

.fa-outdent:before {
  content: ""
}

.fa-page4:before {
  content: ""
}

.fa-pagelines:before {
  content: ""
}

.fa-pager:before {
  content: ""
}

.fa-paint-brush:before {
  content: ""
}

.fa-paint-roller:before {
  content: ""
}

.fa-palette:before {
  content: ""
}

.fa-palfed:before {
  content: ""
}

.fa-pallet:before {
  content: ""
}

.fa-paper-plane:before {
  content: ""
}

.fa-paperclip:before {
  content: ""
}

.fa-parachute-box:before {
  content: ""
}

.fa-paragraph:before {
  content: ""
}

.fa-parking:before {
  content: ""
}

.fa-passport:before {
  content: ""
}

.fa-pastafarianism:before {
  content: ""
}

.fa-paste:before {
  content: ""
}

.fa-patreon:before {
  content: ""
}

.fa-pause:before {
  content: ""
}

.fa-pause-circle:before {
  content: ""
}

.fa-paw:before {
  content: ""
}

.fa-paypal:before {
  content: ""
}

.fa-peace:before {
  content: ""
}

.fa-pen:before {
  content: ""
}

.fa-pen-alt:before {
  content: ""
}

.fa-pen-fancy:before {
  content: ""
}

.fa-pen-nib:before {
  content: ""
}

.fa-pen-square:before {
  content: ""
}

.fa-pencil-alt:before {
  content: ""
}

.fa-pencil-ruler:before {
  content: ""
}

.fa-penny-arcade:before {
  content: ""
}

.fa-people-arrows:before {
  content: ""
}

.fa-people-carry:before {
  content: ""
}

.fa-pepper-hot:before {
  content: ""
}

.fa-perbyte:before {
  content: ""
}

.fa-percent:before {
  content: ""
}

.fa-percentage:before {
  content: ""
}

.fa-periscope:before {
  content: ""
}

.fa-person-booth:before {
  content: ""
}

.fa-phabricator:before {
  content: ""
}

.fa-phoenix-framework:before {
  content: ""
}

.fa-phoenix-squadron:before {
  content: ""
}

.fa-phone:before {
  content: ""
}

.fa-phone-alt:before {
  content: ""
}

.fa-phone-slash:before {
  content: ""
}

.fa-phone-square:before {
  content: ""
}

.fa-phone-square-alt:before {
  content: ""
}

.fa-phone-volume:before {
  content: ""
}

.fa-photo-video:before {
  content: ""
}

.fa-php:before {
  content: ""
}

.fa-pied-piper:before {
  content: ""
}

.fa-pied-piper-alt:before {
  content: ""
}

.fa-pied-piper-hat:before {
  content: ""
}

.fa-pied-piper-pp:before {
  content: ""
}

.fa-pied-piper-square:before {
  content: ""
}

.fa-piggy-bank:before {
  content: ""
}

.fa-pills:before {
  content: ""
}

.fa-pinterest:before {
  content: ""
}

.fa-pinterest-p:before {
  content: ""
}

.fa-pinterest-square:before {
  content: ""
}

.fa-pizza-slice:before {
  content: ""
}

.fa-place-of-worship:before {
  content: ""
}

.fa-plane:before {
  content: ""
}

.fa-plane-arrival:before {
  content: ""
}

.fa-plane-departure:before {
  content: ""
}

.fa-plane-slash:before {
  content: ""
}

.fa-play:before {
  content: ""
}

.fa-play-circle:before {
  content: ""
}

.fa-playstation:before {
  content: ""
}

.fa-plug:before {
  content: ""
}

.fa-plus:before {
  content: ""
}

.fa-plus-circle:before {
  content: ""
}

.fa-plus-square:before {
  content: ""
}

.fa-podcast:before {
  content: ""
}

.fa-poll:before {
  content: ""
}

.fa-poll-h:before {
  content: ""
}

.fa-poo:before {
  content: ""
}

.fa-poo-storm:before {
  content: ""
}

.fa-poop:before {
  content: ""
}

.fa-portrait:before {
  content: ""
}

.fa-pound-sign:before {
  content: ""
}

.fa-power-off:before {
  content: ""
}

.fa-pray:before {
  content: ""
}

.fa-praying-hands:before {
  content: ""
}

.fa-prescription:before {
  content: ""
}

.fa-prescription-bottle:before {
  content: ""
}

.fa-prescription-bottle-alt:before {
  content: ""
}

.fa-print:before {
  content: ""
}

.fa-procedures:before {
  content: ""
}

.fa-product-hunt:before {
  content: ""
}

.fa-project-diagram:before {
  content: ""
}

.fa-pump-medical:before {
  content: ""
}

.fa-pump-soap:before {
  content: ""
}

.fa-pushed:before {
  content: ""
}

.fa-puzzle-piece:before {
  content: ""
}

.fa-python:before {
  content: ""
}

.fa-qq:before {
  content: ""
}

.fa-qrcode:before {
  content: ""
}

.fa-question:before {
  content: ""
}

.fa-question-circle:before {
  content: ""
}

.fa-quidditch:before {
  content: ""
}

.fa-quinscape:before {
  content: ""
}

.fa-quora:before {
  content: ""
}

.fa-quote-left:before {
  content: ""
}

.fa-quote-right:before {
  content: ""
}

.fa-quran:before {
  content: ""
}

.fa-r-project:before {
  content: ""
}

.fa-radiation:before {
  content: ""
}

.fa-radiation-alt:before {
  content: ""
}

.fa-rainbow:before {
  content: ""
}

.fa-random:before {
  content: ""
}

.fa-raspberry-pi:before {
  content: ""
}

.fa-ravelry:before {
  content: ""
}

.fa-react:before {
  content: ""
}

.fa-reacteurope:before {
  content: ""
}

.fa-readme:before {
  content: ""
}

.fa-rebel:before {
  content: ""
}

.fa-receipt:before {
  content: ""
}

.fa-record-vinyl:before {
  content: ""
}

.fa-recycle:before {
  content: ""
}

.fa-red-river:before {
  content: ""
}

.fa-reddit:before {
  content: ""
}

.fa-reddit-alien:before {
  content: ""
}

.fa-reddit-square:before {
  content: ""
}

.fa-redhat:before {
  content: ""
}

.fa-redo:before {
  content: ""
}

.fa-redo-alt:before {
  content: ""
}

.fa-registered:before {
  content: ""
}

.fa-remove-format:before {
  content: ""
}

.fa-renren:before {
  content: ""
}

.fa-reply:before {
  content: ""
}

.fa-reply-all:before {
  content: ""
}

.fa-replyd:before {
  content: ""
}

.fa-republican:before {
  content: ""
}

.fa-researchgate:before {
  content: ""
}

.fa-resolving:before {
  content: ""
}

.fa-restroom:before {
  content: ""
}

.fa-retweet:before {
  content: ""
}

.fa-rev:before {
  content: ""
}

.fa-ribbon:before {
  content: ""
}

.fa-ring:before {
  content: ""
}

.fa-road:before {
  content: ""
}

.fa-robot:before {
  content: ""
}

.fa-rocket:before {
  content: ""
}

.fa-rocketchat:before {
  content: ""
}

.fa-rockrms:before {
  content: ""
}

.fa-route:before {
  content: ""
}

.fa-rss:before {
  content: ""
}

.fa-rss-square:before {
  content: ""
}

.fa-ruble-sign:before {
  content: ""
}

.fa-ruler:before {
  content: ""
}

.fa-ruler-combined:before {
  content: ""
}

.fa-ruler-horizontal:before {
  content: ""
}

.fa-ruler-vertical:before {
  content: ""
}

.fa-running:before {
  content: ""
}

.fa-rupee-sign:before {
  content: ""
}

.fa-rust:before {
  content: ""
}

.fa-sad-cry:before {
  content: ""
}

.fa-sad-tear:before {
  content: ""
}

.fa-safari:before {
  content: ""
}

.fa-salesforce:before {
  content: ""
}

.fa-sass:before {
  content: ""
}

.fa-satellite:before {
  content: ""
}

.fa-satellite-dish:before {
  content: ""
}

.fa-save:before {
  content: ""
}

.fa-schlix:before {
  content: ""
}

.fa-school:before {
  content: ""
}

.fa-screwdriver:before {
  content: ""
}

.fa-scribd:before {
  content: ""
}

.fa-scroll:before {
  content: ""
}

.fa-sd-card:before {
  content: ""
}

.fa-search:before {
  content: ""
}

.fa-search-dollar:before {
  content: ""
}

.fa-search-location:before {
  content: ""
}

.fa-search-minus:before {
  content: ""
}

.fa-search-plus:before {
  content: ""
}

.fa-searchengin:before {
  content: ""
}

.fa-seedling:before {
  content: ""
}

.fa-sellcast:before {
  content: ""
}

.fa-sellsy:before {
  content: ""
}

.fa-server:before {
  content: ""
}

.fa-servicestack:before {
  content: ""
}

.fa-shapes:before {
  content: ""
}

.fa-share:before {
  content: ""
}

.fa-share-alt:before {
  content: ""
}

.fa-share-alt-square:before {
  content: ""
}

.fa-share-square:before {
  content: ""
}

.fa-shekel-sign:before {
  content: ""
}

.fa-shield-alt:before {
  content: ""
}

.fa-shield-virus:before {
  content: ""
}

.fa-ship:before {
  content: ""
}

.fa-shipping-fast:before {
  content: ""
}

.fa-shirtsinbulk:before {
  content: ""
}

.fa-shoe-prints:before {
  content: ""
}

.fa-shopify:before {
  content: ""
}

.fa-shopping-bag:before {
  content: ""
}

.fa-shopping-basket:before {
  content: ""
}

.fa-shopping-cart:before {
  content: ""
}

.fa-shopware:before {
  content: ""
}

.fa-shower:before {
  content: ""
}

.fa-shuttle-van:before {
  content: ""
}

.fa-sign:before {
  content: ""
}

.fa-sign-in-alt:before {
  content: ""
}

.fa-sign-language:before {
  content: ""
}

.fa-sign-out-alt:before {
  content: ""
}

.fa-signal:before {
  content: ""
}

.fa-signature:before {
  content: ""
}

.fa-sim-card:before {
  content: ""
}

.fa-simplybuilt:before {
  content: ""
}

.fa-sink:before {
  content: ""
}

.fa-sistrix:before {
  content: ""
}

.fa-sitemap:before {
  content: ""
}

.fa-sith:before {
  content: ""
}

.fa-skating:before {
  content: ""
}

.fa-sketch:before {
  content: ""
}

.fa-skiing:before {
  content: ""
}

.fa-skiing-nordic:before {
  content: ""
}

.fa-skull:before {
  content: ""
}

.fa-skull-crossbones:before {
  content: ""
}

.fa-skyatlas:before {
  content: ""
}

.fa-skype:before {
  content: ""
}

.fa-slack:before {
  content: ""
}

.fa-slack-hash:before {
  content: ""
}

.fa-slash:before {
  content: ""
}

.fa-sleigh:before {
  content: ""
}

.fa-sliders-h:before {
  content: ""
}

.fa-slideshare:before {
  content: ""
}

.fa-smile:before {
  content: ""
}

.fa-smile-beam:before {
  content: ""
}

.fa-smile-wink:before {
  content: ""
}

.fa-smog:before {
  content: ""
}

.fa-smoking:before {
  content: ""
}

.fa-smoking-ban:before {
  content: ""
}

.fa-sms:before {
  content: ""
}

.fa-snapchat:before {
  content: ""
}

.fa-snapchat-ghost:before {
  content: ""
}

.fa-snapchat-square:before {
  content: ""
}

.fa-snowboarding:before {
  content: ""
}

.fa-snowflake:before {
  content: ""
}

.fa-snowman:before {
  content: ""
}

.fa-snowplow:before {
  content: ""
}

.fa-soap:before {
  content: ""
}

.fa-socks:before {
  content: ""
}

.fa-solar-panel:before {
  content: ""
}

.fa-sort:before {
  content: ""
}

.fa-sort-alpha-down:before {
  content: ""
}

.fa-sort-alpha-down-alt:before {
  content: ""
}

.fa-sort-alpha-up:before {
  content: ""
}

.fa-sort-alpha-up-alt:before {
  content: ""
}

.fa-sort-amount-down:before {
  content: ""
}

.fa-sort-amount-down-alt:before {
  content: ""
}

.fa-sort-amount-up:before {
  content: ""
}

.fa-sort-amount-up-alt:before {
  content: ""
}

.fa-sort-down:before {
  content: ""
}

.fa-sort-numeric-down:before {
  content: ""
}

.fa-sort-numeric-down-alt:before {
  content: ""
}

.fa-sort-numeric-up:before {
  content: ""
}

.fa-sort-numeric-up-alt:before {
  content: ""
}

.fa-sort-up:before {
  content: ""
}

.fa-soundcloud:before {
  content: ""
}

.fa-sourcetree:before {
  content: ""
}

.fa-spa:before {
  content: ""
}

.fa-space-shuttle:before {
  content: ""
}

.fa-speakap:before {
  content: ""
}

.fa-speaker-deck:before {
  content: ""
}

.fa-spell-check:before {
  content: ""
}

.fa-spider:before {
  content: ""
}

.fa-spinner:before {
  content: ""
}

.fa-splotch:before {
  content: ""
}

.fa-spotify:before {
  content: ""
}

.fa-spray-can:before {
  content: ""
}

.fa-square:before {
  content: ""
}

.fa-square-full:before {
  content: ""
}

.fa-square-root-alt:before {
  content: ""
}

.fa-squarespace:before {
  content: ""
}

.fa-stack-exchange:before {
  content: ""
}

.fa-stack-overflow:before {
  content: ""
}

.fa-stackpath:before {
  content: ""
}

.fa-stamp:before {
  content: ""
}

.fa-star:before {
  content: ""
}

.fa-star-and-crescent:before {
  content: ""
}

.fa-star-half:before {
  content: ""
}

.fa-star-half-alt:before {
  content: ""
}

.fa-star-of-david:before {
  content: ""
}

.fa-star-of-life:before {
  content: ""
}

.fa-staylinked:before {
  content: ""
}

.fa-steam:before {
  content: ""
}

.fa-steam-square:before {
  content: ""
}

.fa-steam-symbol:before {
  content: ""
}

.fa-step-backward:before {
  content: ""
}

.fa-step-forward:before {
  content: ""
}

.fa-stethoscope:before {
  content: ""
}

.fa-sticker-mule:before {
  content: ""
}

.fa-sticky-note:before {
  content: ""
}

.fa-stop:before {
  content: ""
}

.fa-stop-circle:before {
  content: ""
}

.fa-stopwatch:before {
  content: ""
}

.fa-stopwatch-20:before {
  content: ""
}

.fa-store:before {
  content: ""
}

.fa-store-alt:before {
  content: ""
}

.fa-store-alt-slash:before {
  content: ""
}

.fa-store-slash:before {
  content: ""
}

.fa-strava:before {
  content: ""
}

.fa-stream:before {
  content: ""
}

.fa-street-view:before {
  content: ""
}

.fa-strikethrough:before {
  content: ""
}

.fa-stripe:before {
  content: ""
}

.fa-stripe-s:before {
  content: ""
}

.fa-stroopwafel:before {
  content: ""
}

.fa-studiovinari:before {
  content: ""
}

.fa-stumbleupon:before {
  content: ""
}

.fa-stumbleupon-circle:before {
  content: ""
}

.fa-subscript:before {
  content: ""
}

.fa-subway:before {
  content: ""
}

.fa-suitcase:before {
  content: ""
}

.fa-suitcase-rolling:before {
  content: ""
}

.fa-sun:before {
  content: ""
}

.fa-superpowers:before {
  content: ""
}

.fa-superscript:before {
  content: ""
}

.fa-supple:before {
  content: ""
}

.fa-surprise:before {
  content: ""
}

.fa-suse:before {
  content: ""
}

.fa-swatchbook:before {
  content: ""
}

.fa-swift:before {
  content: ""
}

.fa-swimmer:before {
  content: ""
}

.fa-swimming-pool:before {
  content: ""
}

.fa-symfony:before {
  content: ""
}

.fa-synagogue:before {
  content: ""
}

.fa-sync:before {
  content: ""
}

.fa-sync-alt:before {
  content: ""
}

.fa-syringe:before {
  content: ""
}

.fa-table:before {
  content: ""
}

.fa-table-tennis:before {
  content: ""
}

.fa-tablet:before {
  content: ""
}

.fa-tablet-alt:before {
  content: ""
}

.fa-tablets:before {
  content: ""
}

.fa-tachometer-alt:before {
  content: ""
}

.fa-tag:before {
  content: ""
}

.fa-tags:before {
  content: ""
}

.fa-tape:before {
  content: ""
}

.fa-tasks:before {
  content: ""
}

.fa-taxi:before {
  content: ""
}

.fa-teamspeak:before {
  content: ""
}

.fa-teeth:before {
  content: ""
}

.fa-teeth-open:before {
  content: ""
}

.fa-telegram:before {
  content: ""
}

.fa-telegram-plane:before {
  content: ""
}

.fa-temperature-high:before {
  content: ""
}

.fa-temperature-low:before {
  content: ""
}

.fa-tencent-weibo:before {
  content: ""
}

.fa-tenge:before {
  content: ""
}

.fa-terminal:before {
  content: ""
}

.fa-text-height:before {
  content: ""
}

.fa-text-width:before {
  content: ""
}

.fa-th:before {
  content: ""
}

.fa-th-large:before {
  content: ""
}

.fa-th-list:before {
  content: ""
}

.fa-the-red-yeti:before {
  content: ""
}

.fa-theater-masks:before {
  content: ""
}

.fa-themeco:before {
  content: ""
}

.fa-themeisle:before {
  content: ""
}

.fa-thermometer:before {
  content: ""
}

.fa-thermometer-empty:before {
  content: ""
}

.fa-thermometer-full:before {
  content: ""
}

.fa-thermometer-half:before {
  content: ""
}

.fa-thermometer-quarter:before {
  content: ""
}

.fa-thermometer-three-quarters:before {
  content: ""
}

.fa-think-peaks:before {
  content: ""
}

.fa-thumbs-down:before {
  content: ""
}

.fa-thumbs-up:before {
  content: ""
}

.fa-thumbtack:before {
  content: ""
}

.fa-ticket-alt:before {
  content: ""
}

.fa-tiktok:before {
  content: ""
}

.fa-times:before {
  content: ""
}

.fa-times-circle:before {
  content: ""
}

.fa-tint:before {
  content: ""
}

.fa-tint-slash:before {
  content: ""
}

.fa-tired:before {
  content: ""
}

.fa-toggle-off:before {
  content: ""
}

.fa-toggle-on:before {
  content: ""
}

.fa-toilet:before {
  content: ""
}

.fa-toilet-paper:before {
  content: ""
}

.fa-toilet-paper-slash:before {
  content: ""
}

.fa-toolbox:before {
  content: ""
}

.fa-tools:before {
  content: ""
}

.fa-tooth:before {
  content: ""
}

.fa-torah:before {
  content: ""
}

.fa-torii-gate:before {
  content: ""
}

.fa-tractor:before {
  content: ""
}

.fa-trade-federation:before {
  content: ""
}

.fa-trademark:before {
  content: ""
}

.fa-traffic-light:before {
  content: ""
}

.fa-trailer:before {
  content: ""
}

.fa-train:before {
  content: ""
}

.fa-tram:before {
  content: ""
}

.fa-transgender:before {
  content: ""
}

.fa-transgender-alt:before {
  content: ""
}

.fa-trash:before {
  content: ""
}

.fa-trash-alt:before {
  content: ""
}

.fa-trash-restore:before {
  content: ""
}

.fa-trash-restore-alt:before {
  content: ""
}

.fa-tree:before {
  content: ""
}

.fa-trello:before {
  content: ""
}

.fa-trophy:before {
  content: ""
}

.fa-truck:before {
  content: ""
}

.fa-truck-loading:before {
  content: ""
}

.fa-truck-monster:before {
  content: ""
}

.fa-truck-moving:before {
  content: ""
}

.fa-truck-pickup:before {
  content: ""
}

.fa-tshirt:before {
  content: ""
}

.fa-tty:before {
  content: ""
}

.fa-tumblr:before {
  content: ""
}

.fa-tumblr-square:before {
  content: ""
}

.fa-tv:before {
  content: ""
}

.fa-twitch:before {
  content: ""
}

.fa-twitter:before {
  content: ""
}

.fa-twitter-square:before {
  content: ""
}

.fa-typo3:before {
  content: ""
}

.fa-uber:before {
  content: ""
}

.fa-ubuntu:before {
  content: ""
}

.fa-uikit:before {
  content: ""
}

.fa-umbraco:before {
  content: ""
}

.fa-umbrella:before {
  content: ""
}

.fa-umbrella-beach:before {
  content: ""
}

.fa-uncharted:before {
  content: ""
}

.fa-underline:before {
  content: ""
}

.fa-undo:before {
  content: ""
}

.fa-undo-alt:before {
  content: ""
}

.fa-uniregistry:before {
  content: ""
}

.fa-unity:before {
  content: ""
}

.fa-universal-access:before {
  content: ""
}

.fa-university:before {
  content: ""
}

.fa-unlink:before {
  content: ""
}

.fa-unlock:before {
  content: ""
}

.fa-unlock-alt:before {
  content: ""
}

.fa-unsplash:before {
  content: ""
}

.fa-untappd:before {
  content: ""
}

.fa-upload:before {
  content: ""
}

.fa-ups:before {
  content: ""
}

.fa-usb:before {
  content: ""
}

.fa-user:before {
  content: ""
}

.fa-user-alt:before {
  content: ""
}

.fa-user-alt-slash:before {
  content: ""
}

.fa-user-astronaut:before {
  content: ""
}

.fa-user-check:before {
  content: ""
}

.fa-user-circle:before {
  content: ""
}

.fa-user-clock:before {
  content: ""
}

.fa-user-cog:before {
  content: ""
}

.fa-user-edit:before {
  content: ""
}

.fa-user-friends:before {
  content: ""
}

.fa-user-graduate:before {
  content: ""
}

.fa-user-injured:before {
  content: ""
}

.fa-user-lock:before {
  content: ""
}

.fa-user-md:before {
  content: ""
}

.fa-user-minus:before {
  content: ""
}

.fa-user-ninja:before {
  content: ""
}

.fa-user-nurse:before {
  content: ""
}

.fa-user-plus:before {
  content: ""
}

.fa-user-secret:before {
  content: ""
}

.fa-user-shield:before {
  content: ""
}

.fa-user-slash:before {
  content: ""
}

.fa-user-tag:before {
  content: ""
}

.fa-user-tie:before {
  content: ""
}

.fa-user-times:before {
  content: ""
}

.fa-users:before {
  content: ""
}

.fa-users-cog:before {
  content: ""
}

.fa-users-slash:before {
  content: ""
}

.fa-usps:before {
  content: ""
}

.fa-ussunnah:before {
  content: ""
}

.fa-utensil-spoon:before {
  content: ""
}

.fa-utensils:before {
  content: ""
}

.fa-vaadin:before {
  content: ""
}

.fa-vector-square:before {
  content: ""
}

.fa-venus:before {
  content: ""
}

.fa-venus-double:before {
  content: ""
}

.fa-venus-mars:before {
  content: ""
}

.fa-vest:before {
  content: ""
}

.fa-vest-patches:before {
  content: ""
}

.fa-viacoin:before {
  content: ""
}

.fa-viadeo:before {
  content: ""
}

.fa-viadeo-square:before {
  content: ""
}

.fa-vial:before {
  content: ""
}

.fa-vials:before {
  content: ""
}

.fa-viber:before {
  content: ""
}

.fa-video:before {
  content: ""
}

.fa-video-slash:before {
  content: ""
}

.fa-vihara:before {
  content: ""
}

.fa-vimeo:before {
  content: ""
}

.fa-vimeo-square:before {
  content: ""
}

.fa-vimeo-v:before {
  content: ""
}

.fa-vine:before {
  content: ""
}

.fa-virus:before {
  content: ""
}

.fa-virus-slash:before {
  content: ""
}

.fa-viruses:before {
  content: ""
}

.fa-vk:before {
  content: ""
}

.fa-vnv:before {
  content: ""
}

.fa-voicemail:before {
  content: ""
}

.fa-volleyball-ball:before {
  content: ""
}

.fa-volume-down:before {
  content: ""
}

.fa-volume-mute:before {
  content: ""
}

.fa-volume-off:before {
  content: ""
}

.fa-volume-up:before {
  content: ""
}

.fa-vote-yea:before {
  content: ""
}

.fa-vr-cardboard:before {
  content: ""
}

.fa-vuejs:before {
  content: ""
}

.fa-walking:before {
  content: ""
}

.fa-wallet:before {
  content: ""
}

.fa-warehouse:before {
  content: ""
}

.fa-watchman-monitoring:before {
  content: ""
}

.fa-water:before {
  content: ""
}

.fa-wave-square:before {
  content: ""
}

.fa-waze:before {
  content: ""
}

.fa-weebly:before {
  content: ""
}

.fa-weibo:before {
  content: ""
}

.fa-weight:before {
  content: ""
}

.fa-weight-hanging:before {
  content: ""
}

.fa-weixin:before {
  content: ""
}

.fa-whatsapp:before {
  content: ""
}

.fa-whatsapp-square:before {
  content: ""
}

.fa-wheelchair:before {
  content: ""
}

.fa-whmcs:before {
  content: ""
}

.fa-wifi:before {
  content: ""
}

.fa-wikipedia-w:before {
  content: ""
}

.fa-wind:before {
  content: ""
}

.fa-window-close:before {
  content: ""
}

.fa-window-maximize:before {
  content: ""
}

.fa-window-minimize:before {
  content: ""
}

.fa-window-restore:before {
  content: ""
}

.fa-windows:before {
  content: ""
}

.fa-wine-bottle:before {
  content: ""
}

.fa-wine-glass:before {
  content: ""
}

.fa-wine-glass-alt:before {
  content: ""
}

.fa-wix:before {
  content: ""
}

.fa-wizards-of-the-coast:before {
  content: ""
}

.fa-wodu:before {
  content: ""
}

.fa-wolf-pack-battalion:before {
  content: ""
}

.fa-won-sign:before {
  content: ""
}

.fa-wordpress:before {
  content: ""
}

.fa-wordpress-simple:before {
  content: ""
}

.fa-wpbeginner:before {
  content: ""
}

.fa-wpexplorer:before {
  content: ""
}

.fa-wpforms:before {
  content: ""
}

.fa-wpressr:before {
  content: ""
}

.fa-wrench:before {
  content: ""
}

.fa-x-ray:before {
  content: ""
}

.fa-xbox:before {
  content: ""
}

.fa-xing:before {
  content: ""
}

.fa-xing-square:before {
  content: ""
}

.fa-y-combinator:before {
  content: ""
}

.fa-yahoo:before {
  content: ""
}

.fa-yammer:before {
  content: ""
}

.fa-yandex:before {
  content: ""
}

.fa-yandex-international:before {
  content: ""
}

.fa-yarn:before {
  content: ""
}

.fa-yelp:before {
  content: ""
}

.fa-yen-sign:before {
  content: ""
}

.fa-yin-yang:before {
  content: ""
}

.fa-yoast:before {
  content: ""
}

.fa-youtube:before {
  content: ""
}

.fa-youtube-square:before {
  content: ""
}

.fa-zhihu:before {
  content: ""
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/assets/webfonts/fa-solid-900-f8be00ef.eot");
  src: url("/assets/webfonts/fa-solid-900-f8be00ef.eot?#iefix") format("embedded-opentype"), url("/assets/webfonts/fa-solid-900-729f0fb9.woff2") format("woff2"), url("/assets/webfonts/fa-solid-900-2fc776f4.woff") format("woff"), url("/assets/webfonts/fa-solid-900-7f125dfe.ttf") format("truetype"), url("/assets/webfonts/fa-solid-900-d9839def.svg#fontawesome") format("svg")
}

.fa,
.fas,
.screensteps-wrapper:before,
.screensteps-foldable-content-parent:before,
.screensteps-document .screensteps--prompt::before,
.screensteps-document .action-block.closed .action-block--title::after,
.screensteps-document .workflow-article--step_answer .workflow-article--step-question::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/webfonts/fa-regular-400-38b9bccb.eot");
  src: url("/assets/webfonts/fa-regular-400-38b9bccb.eot?#iefix") format("embedded-opentype"), url("/assets/webfonts/fa-regular-400-81c8ad8c.woff2") format("woff2"), url("/assets/webfonts/fa-regular-400-28552e11.woff") format("woff"), url("/assets/webfonts/fa-regular-400-50bc1278.ttf") format("truetype"), url("/assets/webfonts/fa-regular-400-289c06c8.svg#fontawesome") format("svg")
}

.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/webfonts/fa-brands-400-4bcae0ec.eot");
  src: url("/assets/webfonts/fa-brands-400-4bcae0ec.eot?#iefix") format("embedded-opentype"), url("/assets/webfonts/fa-brands-400-0639d426.woff2") format("woff2"), url("/assets/webfonts/fa-brands-400-5dedb937.woff") format("woff"), url("/assets/webfonts/fa-brands-400-9d14a822.ttf") format("truetype"), url("/assets/webfonts/fa-brands-400-01b9ba16.svg#fontawesome") format("svg")
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa-address-book.fa,
.fa-address-book::before,
.fa-address-card.fa,
.fa-address-card::before,
.fa-archive.fa,
.fa-archive::before,
.fa-arrows-alt.fa,
.fa-arrows-alt::before,
.fa-at.fa,
.fa-at::before,
.fa-barcode.fa,
.fa-barcode::before,
.fa-bed.fa,
.fa-bed::before,
.fa-bell.fa,
.fa-bell::before,
.fa-bicycle.fa,
.fa-bicycle::before,
.fa-bolt.fa,
.fa-bolt::before,
.fa-book.fa,
.fa-book::before,
.fa-bookmark.fa,
.fa-bookmark::before,
.fa-briefcase.fa,
.fa-briefcase::before,
.fa-bug.fa,
.fa-bug::before,
.fa-building.fa,
.fa-building::before,
.fa-bullhorn.fa,
.fa-bullhorn::before,
.fa-bus.fa,
.fa-bus::before,
.fa-calculator.fa,
.fa-calculator::before,
.fa-calendar-alt.fa,
.fa-calendar-alt::before,
.fa-camera.fa,
.fa-camera::before,
.fa-car.fa,
.fa-car::before,
.fa-certificate.fa,
.fa-certificate::before,
.fa-chart-area.fa,
.fa-chart-area::before,
.fa-chart-line.fa,
.fa-chart-line::before,
.fa-cloud.fa,
.fa-cloud::before,
.fa-code.fa,
.fa-code::before,
.fa-coffee.fa,
.fa-coffee::before,
.fa-cog.fa,
.fa-cog::before,
.fa-cogs.fa,
.fa-cogs::before,
.fa-comment.fa,
.fa-comment::before,
.fa-cut.fa,
.fa-cut::before,
.fa-database.fa,
.fa-database::before,
.fa-deaf.fa,
.fa-deaf::before,
.fa-desktop.fa,
.fa-desktop::before,
.fa-download.fa,
.fa-download::before,
.fa-envelope.fa,
.fa-envelope::before,
.fa-envelope-open.fa,
.fa-envelope-open::before,
.fa-exclamation-triangle.fa,
.fa-exclamation-triangle::before,
.fa-file.fa,
.fa-file::before,
.fa-file-alt.fa,
.fa-file-alt::before,
.fa-filter.fa,
.fa-filter::before,
.fa-fire-extinguisher.fa,
.fa-fire-extinguisher::before,
.fa-flag.fa,
.fa-flag::before,
.fa-flask.fa,
.fa-flask::before,
.fa-folder.fa,
.fa-folder::before,
.fa-gamepad.fa,
.fa-gamepad::before,
.fa-gavel.fa,
.fa-gavel::before,
.fa-gift.fa,
.fa-gift::before,
.fa-globe.fa,
.fa-globe::before,
.fa-graduation-cap.fa,
.fa-graduation-cap::before,
.fa-headphones.fa,
.fa-headphones::before,
.fa-heart.fa,
.fa-heart::before,
.fa-home.fa,
.fa-home::before,
.fa-id-card.fa,
.fa-id-card::before,
.fa-inbox.fa,
.fa-inbox::before,
.fa-info.fa,
.fa-info::before,
.fa-key.fa,
.fa-key::before,
.fa-laptop.fa,
.fa-laptop::before,
.fa-list.fa,
.fa-list::before,
.fa-lock.fa,
.fa-lock::before,
.fa-magic.fa,
.fa-magic::before,
.fa-magnet.fa,
.fa-magnet::before,
.fa-map-marker-alt.fa,
.fa-map-marker-alt::before,
.fa-microphone.fa,
.fa-microphone::before,
.fa-mobile-alt.fa,
.fa-mobile-alt::before,
.fa-motorcycle.fa,
.fa-motorcycle::before,
.fa-music.fa,
.fa-music::before,
.fa-paper-plane.fa,
.fa-paper-plane::before,
.fa-paperclip.fa,
.fa-paperclip::before,
.fa-paragraph.fa,
.fa-paragraph::before,
.fa-paw.fa,
.fa-paw::before,
.fa-pencil-alt.fa,
.fa-pencil-alt::before,
.fa-phone.fa,
.fa-phone::before,
.fa-plane.fa,
.fa-plane::before,
.fa-play.fa,
.fa-play::before,
.fa-plug.fa,
.fa-plug::before,
.fa-power-off.fa,
.fa-power-off::before,
.fa-print.fa,
.fa-print::before,
.fa-puzzle-piece.fa,
.fa-puzzle-piece::before,
.fa-question.fa,
.fa-question::before,
.fa-quote-right.fa,
.fa-quote-right::before,
.fa-road.fa,
.fa-road::before,
.fa-rocket.fa,
.fa-rocket::before,
.fa-rss.fa,
.fa-rss::before,
.fa-search.fa,
.fa-search::before,
.fa-ship.fa,
.fa-ship::before,
.fa-shopping-basket.fa,
.fa-shopping-basket::before,
.fa-shopping-cart.fa,
.fa-shopping-cart::before,
.fa-signal.fa,
.fa-signal::before,
.fa-sitemap.fa,
.fa-sitemap::before,
.fa-star.fa,
.fa-star::before,
.fa-suitcase.fa,
.fa-suitcase::before,
.fa-sync.fa,
.fa-sync::before,
.fa-table.fa,
.fa-table::before,
.fa-tablet-alt.fa,
.fa-tablet-alt::before,
.fa-tachometer-alt.fa,
.fa-tachometer-alt::before,
.fa-tag.fa,
.fa-tag::before,
.fa-thumbs-down.fa,
.fa-thumbs-down::before,
.fa-thumbs-up.fa,
.fa-thumbs-up::before,
.fa-trash.fa,
.fa-trash::before,
.fa-trophy.fa,
.fa-trophy::before,
.fa-truck.fa,
.fa-truck::before,
.fa-university.fa,
.fa-university::before,
.fa-user-circle.fa,
.fa-user-circle::before,
.fa-users.fa,
.fa-users::before,
.fa-utensils.fa,
.fa-utensils::before,
.fa-video.fa,
.fa-video::before,
.fa-wifi.fa,
.fa-wifi::before,
.fa-wrench.fa,
.fa-wrench::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900
}

.fa-address-book-o.fa,
.fa-address-book-o::before,
.fa-address-card-o.fa,
.fa-address-card-o::before,
.fa-bar-chart.fa,
.fa-bar-chart::before,
.fa-clipboard.fa,
.fa-clipboard::before,
.fa-compass.fa,
.fa-compass::before,
.fa-credit-card.fa,
.fa-credit-card::before,
.fa-envelope-o.fa,
.fa-envelope-o::before,
.fa-envelope-open-o.fa,
.fa-envelope-open-o::before,
.fa-eye.fa,
.fa-eye::before,
.fa-file-excel-o.fa,
.fa-file-excel-o::before,
.fa-hand-paper-o.fa,
.fa-hand-paper-o::before,
.fa-handshake-o.fa,
.fa-handshake-o::before,
.fa-id-badge.fa,
.fa-id-badge::before,
.fa-id-card-o.fa,
.fa-id-card-o::before,
.fa-keyboard-o.fa,
.fa-keyboard-o::before,
.fa-life-bouy.fa,
.fa-life-bouy::before,
.fa-lightbulb-o.fa,
.fa-lightbulb-o::before,
.fa-list-alt.fa,
.fa-list-alt::before,
.fa-meh-o.fa,
.fa-meh-o::before,
.fa-money.fa,
.fa-money::before,
.fa-newspaper-o.fa,
.fa-newspaper-o::before,
.fa-pencil-square-o.fa,
.fa-pencil-square-o::before,
.fa-photo.fa,
.fa-photo::before,
.fa-picture-o.fa,
.fa-picture-o::before,
.fa-user-o.fa,
.fa-user-o::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400
}

.fa-amazon.fa,
.fa-amazon::before,
.fa-android.fa,
.fa-android::before,
.fa-apple.fa,
.fa-apple::before,
.fa-google.fa,
.fa-google::before,
.fa-paypal.fa,
.fa-paypal::before,
.fa-windows.fa,
.fa-windows::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400
}

.fa-address-book-o::before {
  content: ""
}

.fa-address-card-o::before {
  content: ""
}

.fa-bar-chart::before {
  content: ""
}

.fa-envelope-o::before {
  content: ""
}

.fa-envelope-open-o::before {
  content: ""
}

.fa-file-excel-o::before {
  content: ""
}

.fa-hand-paper-o::before {
  content: ""
}

.fa-handshake-o::before {
  content: ""
}

.fa-id-card-o::before {
  content: ""
}

.fa-keyboard-o::before {
  content: ""
}

.fa-life-bouy::before {
  content: ""
}

.fa-lightbulb-o::before {
  content: ""
}

.fa-meh-o::before {
  content: ""
}

.fa-money::before {
  content: ""
}

.fa-newspaper-o::before {
  content: ""
}

.fa-pencil-square-o::before {
  content: ""
}

.fa-photo::before {
  content: ""
}

.fa-picture-o::before {
  content: ""
}

.fa-user-o::before {
  content: ""
}

.screensteps-document .action-block.closed,
.screensteps-document .workflow-article--step_answer {
  cursor: pointer;
  transition: all 150ms ease
}

.screensteps-document .action-block--title {
  font-weight: bold;
  margin: 0 0 12px
}

.screensteps-document .action-block.closed .action-block--title,
.screensteps-document .workflow-article--step_answer .workflow-article--step-question {
  color: #7e848e;
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 12px;
  position: relative;
  padding-right: 24px
}

.screensteps-document .action-block.closed .action-block--title {
  margin-bottom: 0
}

.screensteps-document .action-block.closed .action-block--title::after,
.screensteps-document .workflow-article--step_answer .workflow-article--step-question::after {
  align-items: center;
  background-color: #6bca8c;
  border-radius: 50%;
  color: #fff;
  content: "";
  display: flex;
  font-size: 11px;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px
}

.screensteps-document {
  counter-reset: question-counter
}

.screensteps-document .workflow-article--step-question::before,
.screensteps-document .action-block .action-block--title::before {
  content: counter(question-counter) ". ";
  counter-increment: question-counter
}

.screensteps-document a {
  word-break: break-word
}

.screensteps-document .article-header .tooltip svg {
  margin-right: 5px
}

.screensteps-document .article-title {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 0
}

.screensteps-document .screensteps-textblock {
  margin-bottom: 14px
}

.screensteps-document .screensteps-textblock p,
.screensteps-document .screensteps-textblock ul,
.screensteps-document .screensteps-textblock ol,
.screensteps-document .screensteps-textblock .code-block {
  margin-top: 12px
}

.screensteps-document .screensteps-textblock p+p,
.screensteps-document .screensteps-textblock p+ul,
.screensteps-document .screensteps-textblock p+ol,
.screensteps-document .screensteps-textblock p+.code-block,
.screensteps-document .screensteps-textblock ul+p,
.screensteps-document .screensteps-textblock ul+ul,
.screensteps-document .screensteps-textblock ul+ol,
.screensteps-document .screensteps-textblock ul+.code-block,
.screensteps-document .screensteps-textblock ol+p,
.screensteps-document .screensteps-textblock ol+ul,
.screensteps-document .screensteps-textblock ol+ol,
.screensteps-document .screensteps-textblock ol+.code-block,
.screensteps-document .screensteps-textblock .code-block+p,
.screensteps-document .screensteps-textblock .code-block+ul,
.screensteps-document .screensteps-textblock .code-block+ol,
.screensteps-document .screensteps-textblock .code-block+.code-block {
  margin-top: 12px
}

.screensteps-document .screensteps-textblock p:first-child,
.screensteps-document .screensteps-textblock ul:first-child,
.screensteps-document .screensteps-textblock ol:first-child,
.screensteps-document .screensteps-textblock .code-block:first-child {
  margin-top: 0
}

.screensteps-document .screensteps-textblock p:nth-last-child(2),
.screensteps-document .screensteps-textblock ul:nth-last-child(2),
.screensteps-document .screensteps-textblock ol:nth-last-child(2),
.screensteps-document .screensteps-textblock .code-block:nth-last-child(2) {
  margin-bottom: 12px
}

.screensteps-document .screensteps-textblock .copied-textblock code,
.screensteps-document .screensteps-textblock .copied-textblock p,
.screensteps-document .screensteps-textblock .copied-textblock li {
  color: #fff;
  background-color: #39f
}

.screensteps-document .screensteps-textblock p {
  margin: 0;
  line-height: 1.7
}

.screensteps-document .screensteps-textblock ul,
.screensteps-document .screensteps-textblock ol {
  line-height: 1.7
}

.screensteps-document .code-block {
  position: relative;
  margin-top: 12px
}

.screensteps-document .code-block pre {
  margin: 0;
  border: 0;
  padding: 24px 20px 10px 15px
}

.screensteps-document .code-block code {
  margin: 0;
  padding: 0;
  border: 0
}

.screensteps-document .code-block .copy-clipboard {
  position: absolute;
  top: 10px;
  right: 10px
}

.screensteps-document .code-block .copy-clipboard--tt {
  transform: translateX(-90%) !important
}

.screensteps-document .screensteps-textblock p+p {
  margin-top: 12px
}

.screensteps-document .screensteps-textblock--text {
  text-align: left
}

.screensteps-document .screensteps-textblock.instructions {
  background-color: #ebf5ff;
  font-size: 14px;
  margin: 5px 0 0;
  padding: 16px;
  padding-left: 40px
}

.screensteps-document .screensteps-textblock.instructions::before {
  left: 8px
}

.screensteps-document .screensteps-answer {
  margin-top: 5px
}

.screensteps-document .workflow-article--step {
  border: 1px solid #3ea9fc;
  border-width: 1px 0;
  margin: 0 0 -1px;
  padding: 20px 0
}

.screensteps-document .workflow-article--completion {
  font-size: 18px;
  font-weight: bold
}

.screensteps-document .workflow-article--step-question {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 12px
}

.screensteps-document .workflow-article--button {
  align-items: stretch;
  background: #fff;
  border-radius: 0;
  border: 1px solid #e6ebf0;
  box-shadow: inset 4px 0 0 0 #3ea9fc;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  height: auto;
  line-height: 1.3;
  outline: none;
  overflow: hidden;
  padding: 0;
  padding: 8px 12px;
  position: relative;
  transition: all 150ms ease;
  white-space: normal;
  width: 100%
}

.screensteps-document .workflow-article--button::before {
  content: none
}

.screensteps-document .workflow-article--button:hover {
  background-color: #3ea9fc;
  color: #fff
}

.screensteps-document .workflow-article--button svg {
  display: none
}

.screensteps-document .workflow-article--step_answer .workflow-article--button {
  background: none;
  border: 0;
  border-left: 3px solid #e6ebf0;
  box-shadow: none;
  color: #7e848e;
  font-size: 15px;
  line-height: 1.2;
  padding-left: 0
}

.screensteps-document .workflow-article--step_answer .workflow-article--button::before {
  content: none
}

.screensteps-document .workflow-article--step_answer .workflow-article--button:hover {
  box-shadow: none;
  transform: none
}

.screensteps-document .workflow-article--step_answer .screensteps-textblock--text {
  margin: 0 0 0 15px
}

.screensteps-document .screensteps-answer--contents {
  margin-top: 20px
}

.screensteps-document .screensteps-foldable-wrapper {
  position: relative
}

.screensteps-document .screensteps-foldable-wrapper>.screensteps-anchor {
  left: -2rem;
  top: .45rem;
  padding: .5rem;
  position: absolute;
  text-decoration: none
}

.screensteps-document .screensteps-foldable-wrapper>.screensteps-anchor svg {
  fill-opacity: 0;
  transition: .15s fill-opacity ease
}

.screensteps-document .screensteps-foldable-wrapper:hover>.screensteps-anchor svg {
  fill-opacity: .6
}

.screensteps-document .screensteps-foldable-wrapper:hover>.screensteps-anchor:hover svg {
  fill-opacity: 1
}

.screensteps-document .screensteps-foldable-step {
  background-color: #fbfdfd;
  border: 1px solid #eaebeb;
  border-radius: 4px;
  margin: 5px 0;
  position: relative
}

.screensteps-document .screensteps-foldable-step .embedded-chapter-article {
  cursor: pointer;
  display: list-item;
  font-weight: bold;
  line-height: 1.5;
  word-break: break-word;
  padding: .75rem
}

.screensteps-document .screensteps-foldable-step .screensteps-nested-content {
  padding: 1rem;
  word-break: break-word
}

.screensteps-document .action-block {
  border-color: #3ea9fc;
  border-style: solid;
  border-width: 1px 0;
  cursor: default;
  margin: 0 0 -1px;
  padding: 20px 0
}

.screensteps-document .action-block.closed h3 {
  margin-bottom: 0
}

.screensteps-document .action-block.closed h3~div {
  display: none
}

.screensteps-document .screensteps-answer--contents .action-block {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0
}

.screensteps-document .action-block--title svg {
  display: none
}

.screensteps-document .action-block--button,
.action-block-copyclipboard--button {
  background-color: #3ea9fc;
  background-image: none;
  border-radius: 4px;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  height: auto;
  justify-content: space-between;
  line-height: normal;
  outline: none;
  transition: background-color 150ms ease
}

.screensteps-document .action-block--button {
  display: flex;
  align-items: center;
  margin-top: 14px;
  width: 100%;
  padding: 4px 16px
}

.screensteps-document .action-block-copyclipboard--button {
  white-space: normal;
  width: auto;
  height: 2.5333333333rem;
  float: right;
  margin: 2em 0;
  padding: .15em 1em
}

.screensteps-document .action-block--button:hover,
.action-block-copyclipboard--button:hover {
  background-color: #179aff;
  box-shadow: none
}

.screensteps-document .action-block--button svg {
  fill: #fff;
  width: 30px
}

.screensteps-document .step .instructions {
  margin: 0 0 16px
}

.screensteps-document .step.screensteps-checkbox-item .checklist-anchor {
  border: 1px solid #f3f3f3;
  cursor: pointer;
  position: relative;
  top: 0;
  transition: all ease-in-out .15s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none
}

.screensteps-document .step.screensteps-checkbox-item .screensteps-foldable-trigger {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%
}

.screensteps-document .step.screensteps-checkbox-item .screensteps-foldable-trigger .icon-down-chevron {
  height: 8px;
  position: absolute;
  top: 20px;
  transition: all ease-in-out .2s;
  transform-origin: center;
  right: 15px;
  width: 12px
}

.screensteps-document .step.screensteps-checkbox-item .screensteps-foldable-trigger .icon-down-chevron path {
  fill: #179aff
}

.screensteps-document .step.screensteps-checkbox-item .screensteps-foldable-trigger.expanded {
  background-color: #ecf6fd
}

.screensteps-document .step.screensteps-checkbox-item .screensteps-foldable-trigger.expanded .icon-down-chevron {
  transform: rotate(180deg)
}

.screensteps-document .step.screensteps-checkbox-item label {
  align-items: flex-start;
  color: #179aff;
  display: flex;
  font-size: 15px;
  padding: 15px;
  padding-right: 45px
}

.screensteps-document .step.screensteps-checkbox-item label .check-ico {
  cursor: pointer;
  flex: 0 0 19px;
  margin-top: -2px;
  margin-right: 15px;
  position: relative;
  z-index: 1
}

.screensteps-document .step.screensteps-checkbox-item label .check-ico path {
  fill: #acacac
}

.screensteps-document .step.screensteps-checkbox-item label .check-ico .checkmark {
  fill: #179aff;
  opacity: 0;
  transition: all ease-in-out .15s
}

.screensteps-document .step.screensteps-checkbox-item label .check-ico:hover .checkmark {
  opacity: .3
}

.screensteps-document .step.screensteps-checkbox-item label span {
  line-height: 18px;
  position: relative
}

.screensteps-document .step.screensteps-checkbox-item label span::after {
  background: repeating-linear-gradient(180deg, transparent, transparent 9px, #727b79 9px, #727b79 10px, transparent 10px, transparent 18px);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform .5s cubic-bezier(0.55, 0, 0.1, 1);
  width: 100%
}

.screensteps-document .step.screensteps-checkbox-item input[type=checkbox] {
  display: none
}

.screensteps-document .step.screensteps-checkbox-item input[type=checkbox]:checked~label .check-ico .checkmark {
  opacity: 1
}

.screensteps-document .step.screensteps-checkbox-item input[type=checkbox]:checked~label span::after {
  content: "";
  transform: none;
  transform-origin: center left
}

.screensteps-document .screensteps-checkbox-item .screensteps-nested-content {
  background-color: #f8fcff;
  box-shadow: inset 0 0 0 1px #f3f3f3;
  margin: -1px 0;
  padding: 15px
}

div.screensteps-document h2,
div.screensteps-document h3 {
  margin: .83em 0
}

div.screensteps-document .image img {
  padding: 5px 0px;
  display: block;
  max-width: 100%;
  height: auto
}

div.screensteps-document div.step,
div.screensteps-document div.sub-step {
  clear: both
}

div.screensteps-document .image {
  margin-bottom: 2em
}

div.screensteps-document .step .instructions,
div.screensteps-document .step .step-instructions {
  clear: left
}

div.screensteps-document ul {
  margin: 1em 0
}

.screensteps-document table {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ddd;
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%
}

.screensteps-document td,
.screensteps-table th {
  border: 1px solid #ddd;
  line-height: 20px;
  padding: 8px;
  text-align: left;
  vertical-align: top
}

.screensteps-table p {
  margin-bottom: 0;
  margin-left: 0
}

.screensteps-document table.fr-no-border,
.screensteps-document table.fr-no-border th,
.screensteps-document table.fr-no-border td {
  border: none
}

div.screensteps-table table.fr-dashed-borders,
div.screensteps-table table.fr-dashed-borders th,
div.screensteps-table table.fr-dashed-borders td {
  border-style: dashed
}

.screensteps-document th {
  font-weight: 700
}

.screensteps-document table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5
}

.screensteps-document .screensteps--prompt::before {
  content: ""
}

.screensteps-document .screensteps--prompt {
  background-color: #ebf5ff;
  margin: .5em 0;
  padding: 1em 1.25em 1em 2em;
  position: relative
}

.screensteps-document .screensteps--prompt:before {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #73bbff;
  display: flex;
  font-size: 1.125em;
  height: 2rem;
  justify-content: center;
  left: -1rem;
  padding: 0;
  position: absolute;
  top: .75rem;
  width: 2rem
}

.screensteps-document .screensteps--prompt span {
  font-style: italic
}

.screensteps-document .screensteps--prompt p {
  display: inline
}

.screensteps-document .copy-clipboard {
  position: relative;
  margin-left: 8.5px;
  vertical-align: middle;
  display: inline-flex
}

.screensteps-document .copy-clipboard .clipboard-icon {
  cursor: pointer
}

.screensteps-document .copy-clipboard .clipboard-icon path {
  fill: #556a7b
}

.screensteps-document .copy-clipboard .clipboard-icon:hover path {
  fill: #256393
}

.screensteps-document .copy-clipboard--tt {
  position: absolute;
  top: -26px;
  right: auto;
  bottom: auto;
  left: 50%;
  padding: 4px 6px;
  color: #fff;
  font-size: 13px;
  font-style: normal !important;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  background-color: #0e284a;
  border-radius: 2px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  user-select: none
}

.screensteps-document .copy-clipboard--tt-right .copy-clipboard--tt {
  transform: translateX(-90%)
}

.screensteps-document .copy-clipboard--tt-left .copy-clipboard--tt {
  transform: translateX(-10%)
}

.screensteps-document .copy-clipboard--icon:hover+.copy-clipboard--tt {
  visibility: visible;
  opacity: 1
}

.screensteps-document .code-block.copy-clipboard--parent .copy-clipboard {
  position: absolute;
  top: 10px;
  right: 10px
}

.screensteps-document .code-block.copy-clipboard--parent .copy-clipboard--tt {
  transform: translateX(-90%) !important
}

.screensteps-wrapper {
  line-height: 1.5em;
  margin: 10px 0;
  padding: 15px;
  padding-left: 45px;
  position: relative
}

.screensteps-wrapper--introduction {
  background-color: #e8f5f9;
  color: #115478;
  padding-left: 15px
}

.screensteps-wrapper--introduction p {
  margin-left: 0
}

.screensteps-wrapper--info {
  background-color: #e8f5f9;
  color: #115478
}

.screensteps-wrapper--alert {
  background-color: #fdecec;
  color: #970c0c
}

.screensteps-wrapper--tip {
  background-color: #effae7;
  color: #395c23
}

.screensteps-wrapper--warning {
  background-color: #fff9aa;
  color: #704700
}

.screensteps-revision-information {
  border-top: 1px solid #e6e6e6;
  margin-top: 1em;
  padding-top: 1em
}

.screensteps-foldable-content-parent:before {
  content: "";
  margin-right: .75em;
  transform: translate(0, 0)
}

.screensteps-foldable-content-parent.expanded:before {
  content: ""
}

.screensteps-wrapper:before {
  display: block;
  font-size: 1.3em;
  left: 15px;
  position: absolute;
  top: 19px;
  transform: translate(0, 0)
}

.screensteps-wrapper--info:before {
  color: #5ab7e7;
  content: "";
}

.screensteps-wrapper--alert:before {
  color: #d56565;
  content: "";
}

.screensteps-wrapper--tip:before {
  color: #65a73c;
  content: "";
  padding-left: 5px
}

.screensteps-wrapper--warning:before {
  color: #e3a600;
  content: ""
}

.hide {
  display: none
}

li.ck-list-marker-bold::marker {
  font-weight: 700
}

li.ck-list-marker-italic::marker {
  font-style: italic
}

li.ck-list-marker-color::marker {
  color: var(--ck-content-list-marker-color)
}