@charset "UTF-8";
/*************** Normalize.css ***************/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

:root {
  --content-padding: 15px;
  --dark-blue: #002A6A;
  --mid-blue: #276DB6;
  --light-blue: #0EB5DE;
  --orange: #F15B22;
  --dark-grey: #6B6B6B;
  --light-grey: #EDEDED;
     scroll-behavior: smooth;
  scroll-padding-top: 170px;

}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
  min-height: calc(70vh - 300px);
}
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 {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 16px;
  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;
}
#votingForm {
  padding-left: 45px;
}
 #votingForm div input[type=checkbox] {
  position: absolute;
  opacity: 0;
}

#votingForm label {
  color: var(--dark-blue);
	cursor: pointer;
  font-family: var(--helv-b);
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
}




 #votingForm div input[type=checkbox] + label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid var(--light-blue);
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  left: -45px; 
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
 #votingForm div input[type=checkbox]:checked + label:before {
  background-color: #12c934;
	background: url(/hc/theming_assets/01HZKNNBW1EYJ2W7CAY3KNZYFA);
}
 #votingForm div input[type=checkbox]:focus + label:before {
  outline: none;
  border-color: #3197EE;
}
 #votingForm div input[type=checkbox]:disabled + label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
 #votingForm div input[type=checkbox] + label:empty:before {
  margin-right: 0;
}
#votingForm div {
    margin-bottom: 20px;
}

#votingForm .cta-button {
  margin: 30px;
  margin-left: 0;
  cursor: pointer;
  padding: 10px 30px;
  border: none;
  border-radius: 0px;
  transform: translateX(-45px);
}

#votingFormWrapper h3,
#votingFormAlert h3 {
  color: var(--dark-blue);
  font-size: 20px;
}

/********************
 FONTS
********************/

@font-face {
    font-family: "Trade Gothic";
    src: url(/hc/theming_assets/01HZKNND234MW4TJGRA04ZPTX5) format("woff2"), url(/hc/theming_assets/01HZKNNAQ0M5VSVDPZW7KSEJ56) format("woff");
}


:root {
  --helv: Helvetica, Arial, sans-seif;
  --helv-b: Helvetica, Arial, sans-seif ;
  --goth: "Trade Gothic",Helvetica-Bold, Arial, sans-seif;
}


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


body {
/*   background-color: rgb(242,242,242); */
  color: rgba(0, 0, 0, 1);
  font-family: var(--helv), Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}


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

h1 {
  font-family: var(--goth);
  color: var(--dark-blue);
	text-transform: uppercase;
}

h2 {  color: var(--dark-blue);}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--helv-b);
  font-weight: bold;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-top: 0;
}
h1 {
  font-size: 2.15rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.075rem;
}
h5 {
  font-size: 1.025rem;
}
h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.35rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
   	font-size: 1.05rem;
  }
  h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
/*     font-size: 2rem; */
  }
  h3 {
    font-size: 1.45rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1.075rem;
  }
  h6 {
    font-size: 1.025rem;
  }
}
@media (min-width: 1160px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
/*     font-size: 2.25rem; */
  }
  h3 {
    font-size: 1.55rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1.025rem;
  }
}
a {
  color: rgba(129, 129, 129, 1);
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  color: rgba(22, 29, 101, 1);
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input,
textarea {
  color: rgba(0, 0, 0, 1);
  font-size: 14px;
}
input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border .12s ease-in-out;
}
input:not([type="checkbox"]) {
  outline: none;
}
input:not([type="checkbox"]):focus {
/*   border: 1px solid rgba(22, 29, 101, 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 rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}
select:focus {
  border: 1px solid rgba(22, 29, 101, 1);
}
select::-ms-expand {
  display: none;
}
textarea {
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}
textarea:focus {
  border: 1px solid rgba(22, 29, 101, 1);
}

/********************
 GLOBAL HELPERS
********************/
/*************** ALERT BANNER ***************/
.alert-banner {
  background: rgba(22, 29, 101, 1);
  color: #FFFFFF;
  font-weight: bold;
  padding: 0.25rem 0;
  text-align: center;
}

/*************** VISIBILITY ***************/
.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;
}

/*************** CONTAINER ***************/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
/*   min-height: 60vh; */
}
.container-divider {
  border-top: 1px solid rgba(237, 237, 237, 1);
  margin-bottom: 20px;
}
@media (min-width: 1160px) {
  .container {
    padding: 0;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 2%;
  }
}

/*************** 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(22, 29, 101, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: #FFFFFF;
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/********** 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;
}
.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");
}
.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");
}
.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;
}
.notification-dismiss, 
a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: .6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}
.notification-dismiss:hover {
  opacity: 1;
}
.notification-inline {
  border-radius: 0px;
  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;
}

/*************** SUBNAV ***************/
.sub-nav {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 35px;
  padding: 0 0 var(--content-padding) 0;
  max-width: 1140px;
}

.cath-header .sub-nav {
  margin-left: 50px;
}
.cath-header .sub-nav a {
  color: var(--dark-blue);
}

.cath-header .breadcrumbs li + li::before {
  content: ">";
  color: rgba(255,255,255,0);
  background: url(/hc/theming_assets/01HZKNNCBRZ1Z8VM36PKE7W5VV);
  background-size: 100% 100%;
  width: 11px;
  height: 11px;
  left: 5px;
	filter: saturate(1) brightness(1);
/*   position: absolute; */
}


.sub-nav input[type="search"]::after {
  font-size: 15px;
}
@media (min-width: 769px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 30px;
    margin-top: 15px;
    margin-left: 0;
  }
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
  
  .cat-header .sub-nav {
    margin: 0;
  }
}

/*************** BREADCRUMBS ***************/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
}
.breadcrumbs li {
/*   color: var(--dark-blue); */
  display: inline;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

@media (max-width: 768px) {
  .breadcrumbs li {
  }
  .sub-nav .search {
/* 		margin-bottom: 30px; */
  }
  .cat-header .breadcrumbs {

  }
  
  .cat-header .cat-inner h1 {
    margin-bottom: 20px;
  }
}
.breadcrumbs li + li::before {
  content: ">";
  color: rgba(255,255,255,0);
  background: url(/hc/theming_assets/01HZKNNCBRZ1Z8VM36PKE7W5VV);
  background-size: 100% 100%;
  margin: 0 8px 0 4px;
  width: 11px;
  height: 11px;
  left: 5px;
  filter: saturate(0) brightness(3);
/*   position: absolute; */
}
.cat-header .breadcrumbs li a:visited,
.cat-header .breadcrumbs li a,
.cat-header .breadcrumbs li
{
  color: #fff;
}

.cat-header .breadcrumbs li::before {
  filter: brightness(10);
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}

.current-article {
/*   color: var(--orange); */
  cursor: default;
}


/*************** SEARCH FIELDS ***************/
.search-container {
  position: relative;
}
.search {
  position: relative;
}
.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 28px;
  height: 28px;
  fill: #0EB5DE;
}
[dir="rtl"] .search-icon {
  right: 25px;
  left: auto;
}
.search input[type="search"] {
  background-color: white;
  font-size: 16px;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  box-sizing: border-box;
  color: var(--dark-blue);
  height: 60px;
  padding-left: 50px;
  padding-right: 20px;
  -webkit-appearance: none;
  width: 629px;
  padding-top: 4px;
  caret-color: var(--dark-blue);
  font-family: var(--helv-b);
  font-weight: bold;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
}

.search input[type="search"]::placeholder {
  font-family: var(--helv);
  color: var(--dark-grey);
  font-weight: 400;
}
[dir="rtl"] .search input[type="search"] {
  padding-right: 40px;
  padding-left: 20px;
}
.search input[type="search"]:focus {
  border: 2px solid var(--orange);
  font-family: var(--helv-b);
  font-weight: bold;
}
.search-full input[type="search"] {
  border: 2px solid #fff;
}
/*************** SUB NAV SEARCH BAR ***************/
.sub-nav input[type="search"] {
    border: 2px solid var(--orange);
  box-shadow: none; 
  width: 378px;
  height: 60px;
 
  }

@media (min-width: 767px) {
.sub-nav input[type="search"] {
     transition: width .2s ease-in-out;
  }
.sub-nav input[type="search"]:focus {
  width: 480px;

}
  
  }
.sub-nav input[type="submit"] {
  width: 100px;
  padding: 0;
}

@media (max-width: 768px) {
  
  .search input[type="search"] {
    width: 94vw;
  }
  
}

/*************** PAGE HEADER ***************/
.page-header {
  display: flex;
  flex-direction: column;
/*   flex-wrap: wrap; */
  justify-content: space-between;
  margin-bottom: 30px;

}

@media (max-width: 768px) {
  .cat-header .page-header {
    margin-bottom: 0;
  }
}
.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}
.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}
.page-header-description {
  font-family: var(--helv);
  margin: 0;
  word-break: break-word;
}
.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}
.main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo img {
  	margin-top: 5px;
    width: 142px; 
  	height: 47px;
}

.main-logo span {
  font-family: var(--goth);;
  font-size: 20px;
  letter-spacing: 0px;
  color: white;
  margin-left: 15px;
}


@media (max-width: 1180px) {
  .main-logo img {
/*       width: 55px; 
  		height: 31px;
    margin-top: 20px */
  }
}
@media (min-width: 1180px) {
  .page-header {

  }
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}
@media (min-width: 1180px) {
  .main-logo {
/*   padding: 16px; */
  } 
} 




/*************** COMMUNITY HEADER ***************/
.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-follow {
  margin-bottom: 10px;
  width: 100%;
}
.community-follow button {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}
.community-follow button:hover {
  background-color: rgba(22, 29, 101, 1);
}
.community-follow button:hover::after, .community-follow button:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.community-follow button[data-selected="true"] {
  background-color: rgba(22, 29, 101, 1);
  color: #FFFFFF;
}
.community-follow button[data-selected="true"]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.community-follow button[data-selected="true"]:hover {
  background-color: #040511;
  border-color: #040511;
}
.community-follow button::after {
  border-left: 1px solid rgba(22, 29, 101, 1);
  content: attr(data-follower-count);
  color: rgba(22, 29, 101, 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;
}
[dir="rtl"] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(22, 29, 101, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}
@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
  .community-follow button {
    width: auto;
  }
  .community-follow button::after {
    position: static;
  }
}

/*************** FORM FIELDS ***************/
.form-field ~ .form-field {
  margin-top: 25px;
}
.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}
.form-field input {
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  height: 50px;
  line-height: 50px;
  padding: 10px;
  width: 100%;
}
.form-field input[type="text"],
textarea#request_description {
	transition: box-shadow .2s ease-in-out, background-color .2s ease-in-out;
  box-shadow: 0px 0px 0px #99BBD699;
}


.form-field input:focus {
  border: 1px solid rgba(22, 29, 101, 1);
}
.form-field input[type="text"] {
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
}
.form-field input[type="text"]:focus,
textarea#request_description:focus {
  border: 1px solid rgba(22, 29, 101, 1);
  background-color: white;
  box-shadow: 0px 0px 15px #99BBD699;
}


.form-field input[type="checkbox"] {
  width: auto;
}
.form-field .nesty-input {
  border-radius: 0px;
  height: 50px;
  line-height: 50px;
  outline: none;
  vertical-align: middle;
}
.form-field .nesty-input:focus {
  border: 1px solid rgba(22, 29, 101, 1);
  text-decoration: none;
  
}
.nesty-input::after {
  top: 15px;
}
.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(22, 29, 101, 1);
  text-decoration: none;
}
ul[data-hc-pills-container] {
  border-radius: 0px;
  height: 50px;
  line-height: 50px;
}
ul[data-hc-pills-container] li {
  height: 43px;
  line-height: 40px;
}
ul[data-hc-pills-container] li:last-child input {
  height: 43px;
  line-height: 40px;
}
ul[data-hc-pills-container] li[data-hc-pill=true] {
  height: 38px;
  line-height: 36px;
}
.form-field textarea {
  vertical-align: middle;
}
#hc-wysiwyg {
  border-radius: 0px;
}
.form-field input[type="checkbox"] + label {
  margin: 0 0 0 10px;
}
.form-field.boolean {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.form-field.boolean label {
  margin-bottom: 0;
}
.form-field .optional {
  color: #333;
  margin-left: 4px;
}
.form-field p {
  color: #276DB6;
  font-size: 13px;
  margin: 5px 0;
}
.form footer {
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  justify-content: center;
}
.form footer a {
  color: #333;
  cursor: pointer;
  margin-right: 15px;
}
.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}
.form .suggestion-list label {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  display: block;
  padding-bottom: 5px;
}
.form .suggestion-list li {
  padding: 10px 0;
}
.form .suggestion-list li a:visited {
  color: $visited_link_color;
}

/*************** 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(22, 29, 101, 1);
  border-radius: 0px;
  color: rgba(22, 29, 101, 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;
}
.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: #000;
  color: #fff; */
  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: #000;
  color: #fff; */
}
.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;
}

input[type="submit"] {
  font-family: var(--helv);
  cursor: pointer;
  background-color: var(--orange);
  border: 0px solid rgba(22, 29, 101, 1);
  color: #fff;
  font-size: 16px;
  text-transform: uppercase; 
  height: 60px;
  padding: 0 2.5em;
  transition: background-color .2s ease-in-out, border .2s ease-in-out;
  position: absolute;
  right: 0;
  top:0;
  border-radius: 0;
}

.button-large {
  
}

@media (max-width: 768px) {
  input[type="submit"] {
      font-size: 14px;
      padding: 0 1.5em;
  }
  
}
.button-large:hover,
.button-large:active,
.button-large:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus {
  background-color: var(--dark-blue);
  color: #fff !important;
}
.button-large[disabled],
input[type="submit"][disabled] {
/*   background-color: #ddd; */
}
.button-secondary {
  color: #333;
/*   border: 1px solid rgba(237, 237, 237, 1); */
  background-color: transparent;
}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(0, 0, 0, 1);
/*   border: 1px solid rgba(237, 237, 237, 1); */
  background-color: #f7f7f7;
}
@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-large,
  input[type="submit"] {
    width: auto;
  }
}
.split-button {
  display: flex;
}
.split-button button {
  background-color: rgba(22, 29, 101, 1);
  border: 0;
  color: #FFFFFF;
  height: 32px;
  line-height: 16px;
  outline-color: rgba(22, 29, 101, 1);
}
[dir="rtl"] .split-button button:not(:only-child):first-child {
  border-left: 1px solid #FFFFFF;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
[dir="ltr"] .split-button button:not(:only-child):first-child {
  border-right: 1px solid #FFFFFF;
  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;
}
.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;
}

/********** DROPDOWN MENUS **********/
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  align-items: center;
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-flex;
  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 rgba(237, 237, 237, 1);
  border-radius: 0px;
  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 #d8d8d8;
  color: #969696;
  display: block;
  font-weight: normal;
  font-size: 11px;
  padding: 5px 0;
  margin: 5px 20px 10px 20px;
}
.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;
}

/*************** TABLES ***************/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th,
.table th a {
  color: #333;
  font-size: 13px;
  text-align: left;
}
[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}
.table tr {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  display: block;
  padding: 20px 0;
}
.table td {
  display: block;
}
@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
  .table tr {
    display: table-row;
  }
  .table td {
    display: table-cell;
  }
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}
@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}

/*************** LIST ***************/
.striped-list {
  padding: 0;
}
.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}
.striped-list-info {
  flex: 2;
}
.striped-list-title {
  color: rgba(129, 129, 129, 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: $visited_link_color;
}
.striped-list .meta-group {
  margin: 5px 0;
}
.striped-list-count {
  color: #333;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
}
.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}
.striped-list-count-item:last-child::after {
  display: none;
}
.striped-list-number {
  text-align: center;
}
@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
  .striped-list-count-item::after {
    display: none;
  }
  .striped-list-number {
    color: rgba(0, 0, 0, 1);
    display: block;
  }
}

/*************** STATUS LABELS ***************/
.status-label {
  background-color: #038153;
  border-radius: 0px;
  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(22, 29, 101, 1);
}
.status-label-official {
  border-radius: 0px;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}
[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}
.status-label-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #333;
}
.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;
}
@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 0px 0px;
    right: 30px;
    width: auto;
  }
}

/********** METADATA **********/
.meta-group {
  display: block;
}
.meta-group-opposite {
  float: right;
}
[dir="rtl"] .meta-group-opposite {
  float: left;
}
.meta-group * {
  display: inline;
}
.meta-data {
  display: none!important;
  color: #333;
  font-size: 13px;
}
.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/*************** ATTACHMENTS ***************/
.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(0, 0, 0, 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 {
  background: rgba(248, 248, 248, 1);
  border-radius: 0px;
  border-style: dashed;
}
.upload-dropzone span {
  color: #333;
}

/*************** SOCIAL SHARE ***************/
.share {
  padding: 0;
  white-space: nowrap;
}
.share li, 
.share a {
  display: inline-block;
}
.share li {
  height: 25px;
  width: 25px;
}
.share a {
  color: #333;
}
.share a:hover {
  text-decoration: none;
  color: rgba(22, 29, 101, 1);
}
.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/*************** VOTE ***************/
.vote {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.vote a:active, 
.vote a:hover, 
.vote a:focus {
  text-decoration: none;
}
.vote-sum {
  color: #333;
  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(22, 29, 101, 1);
}
.vote-up, 
.vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote-voted {
  color: rgba(22, 29, 101, 1);
}
.vote-voted:hover {
  color: #040511;
}

/*************** COMMENTS ***************/
.comment {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  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 rgba(237, 237, 237, 1);
  border-top: 1px solid rgba(237, 237, 237, 1);
  padding: 20px 0;
}
.comment-overview p {
  margin-top: 0;
}
.comment-callout {
  color: #333;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}
.comment-callout a {
  color: rgba(22, 29, 101, 1);
}
.comment-sorter {
  display: inline-block;
  float: right;
}
.comment-sorter .dropdown-toggle {
  color: #333;
  font-size: 13px;
}
[dir="rtl"] .comment-sorter {
  float: left;
}
.comment-wrapper {
  display: flex;
  position: relative;
}
.comment-wrapper.comment-official {
  border: 1px solid rgba(22, 29, 101, 1);
  padding: 40px 20px 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;
}
.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%;
}
.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}
.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;
}
.comment-form-controls input[type="submit"] {
  margin-top: 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(22, 29, 101, 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 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 a:visited {
  color: $visited_link_color;
}
.comment-body code {
  background: #f7f7f7;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 0 5px;
  margin: 0 2px;
}
.comment-body pre {
  background: #f7f7f7;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.comment-body blockquote {
  border-left: 1px solid rgba(237, 237, 237, 1);
  color: #333;
  font-style: italic;
  padding: 0 15px;
}
.comment-mark-as-solved {
  display: inline-block;
}
@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
  .comment-author {
    justify-content: space-between;
  }
  .comment-labels {
    flex-basis: auto;
  }
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}
@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;
  }
}

/*************** COMMUNITY BADGES ***************/
.community-badge-title {
  background-color: #04444d;
  border-radius: 0px;
  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;
}

/*************** ACTIONS ***************/
.actions {
  text-align: center;
  flex-shrink: 0;
}
.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;
}

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

/*************** COMMUNITY FOOTER ***************/
.community-footer {
  padding-top: 50px;
  text-align: center;
}
.community-footer-title {
  font-size: 16px;
  margin-bottom: 20px;
}


/********************
 HOME PAGE
********************/
.home-section {
  padding: 30px 0 0;
}
.community {
  text-align: center;
}
.community-image {
  min-height: 300px;
  margin-top: 32px;
  background-image: url(/hc/theming_assets/01HZKNNEP9S281PMFSCFK4J2KP);
  background-position: center;
  background-repeat: no-repeat;
  max-width: 100%;
}
.community {
  border-top: 1px solid rgba(237, 237, 237, 1);
  padding: 30px 0;
}
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}
.recent-activity-list {
  padding: 0;
}
.recent-activity-item {
/*   border-bottom: 1px solid rgba(237, 237, 237, 1); */
/*   overflow: auto; */
/*   padding: 20px 0; */
}
.recent-activity-item-parent {
  font-size: 16px;
}
.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: rgba(0, 0, 0, 1);
  display: inline-block;
  width: 100%;
}
.recent-activity-item-link {
  font-size: 14px;
}
.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}
.recent-activity-item-time, .recent-activity-item-comment {
  color: #333;
  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-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(22, 29, 101, 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;
}
@media (min-width: 768px) {
  .home-section {
    padding: 30px 0 30px;
  }
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}


/********************
 CATEGORY PAGE
********************/
.category-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 70px;
}
.category-content {
display: flex;
    width: 100%;
}

@media (max-width: 1024px) {
  .category-container {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .category-content {
    display: block;
  }
}

.cat-header {
  background-color: var(--mid-blue);
  padding-top: 15px;
  margin-bottom: 70px;
}


@media (max-width: 1025px)
{
  .cat-header {
      margin-bottom: 35px;
    padding-top: 10px;
  }
  
  .cat-header .sub-nav  {
/*     margin-bottom: 10px; */
  }
}
.cat-header h1 {
  color: #fff;
  line-height: 1;
	display: block;
}

.cat-header p {
  color: #fff;
  font-family: var(--helv-b);
  font-weight: bold;
}
.cat-inner {
  display: flex;
  margin: 20px 0;
  padding-bottom: 10px;
}

.cat-inner .page-header {
	padding-left: 15px;
}

.cat-image {
  display: inline-block;
}

.cat-image img {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 48px;
  width: 72px;
  filter: saturate(0) brightness(10);
  margin-top: 3px;
}

.cat-header .sub-nav {
/*   margin-bottom: 0; */
  background: none;
  padding-left: 15px;
}
.section-tree {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.section-tree .section {
  flex: initial;
}

@media (min-width: 1025px) {
  
  .category-content .section-tree {
  padding-left: 30px;
  }
}
.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.section-tree-title a {
  font-size: 22px;
  color: var(--dark-blue);
  font-family: var(--helv-b);
  font-weight: bold;
  text-transform: capitalize;
  border-bottom: 2px solid var(--light-blue);
  display: block;
  letter-spacing: 0;
  padding-bottom: 5px;
}
.section-tree .see-all-articles {
  font-family: var(--helv-b);
  font-weight: bold;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  padding-bottom: 15px;
  font-size: 16px;
}

.section-tree .see-all-articles:hover,
.section-tree .see-all-articles:hover .section-tree .see-all-articles::after {
  filter: hue-rotate(216deg) saturate(5) brightness(0.4);
}



.article-list {
  margin-bottom: 30px;
}
.article-list-item {
  font-size: 16px;
  padding: 20px ;
  border-bottom:  1px solid #EDEDED;
  position:       relative;
}
.article-list-item a {
  color: rgba(0, 0, 0, 1);
  transition: all .2s ease-in-out; 
  color: var(--dark-blue);
}

.article-list-item svg {
  margin-left: 20px;
  color: var(--dark-blue);
}

.article-list-item a:hover {

  color: var(--orange);
}

.icon-star {
  color: var(--orange);
  font-size: 18px;
  display: none;
}
.article-list-item a:before {

    content:        "";
    border-color:   transparent var(--light-blue);
    border-style:   solid;
    border-width:   0.55em 0 0.55em 0.7em;
    display:        inline-block;
    height:         0;
    left:           0em;
    position:       absolute;
    top:            21px;
    width:          0;
  
  }
@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
  .section-tree .section {
    flex: 0 0 45%;
  }
}


/********************
 SECTION PAGE
********************/
.section-container {
  padding: var(--content-padding);
  display: flex;
  justify-content: flex-end;
  background-color: white;
}
.section-content {
  flex: 1;
}
.section-list li {
  color: white;
  background-color: var(--dark-blue);
  margin: 15px 0 40px;
  transition: background-color .15s ease-in-out;
}

.section-list li:hover {

  background-color: var(--dark-blue);

}
.section-list-item {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  font-size: 16px;
  padding: 15px;
  color: white;
}
.section-list-item:first-child {
  border-top: 1px solid rgba(237, 237, 237, 1);
}
.section-list-item a {
  font-family: var(--helv-b);
  font-weight: bold;
  align-items: center;
  color: #fff;
  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;
}

.section-subscribe {
  display: none
}

/********************
 ARTICLE PAGE
********************/
.article-container {
  background-color: white;
  display: flex;
  flex-direction: column;
/*   padding: var(--content-padding); */
  margin-bottom: 30px;
}
.article-sidebar {
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
  margin-top: 15px;
}
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  position: relative;
  background-color: var(--dark-blue);
}
.collapsible-sidebar-title {
  margin-top: 0;
}
.collapsible-sidebar-toggle {
  position: absolute;
  top: calc(50px / 2);
  transform: translateY(-50%);
  right: 10px;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  stroke: white;
  color: white;
}
[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(22, 29, 101, 1);
}
.collapsible-sidebar-body {
  display: none;
}
.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}
.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-body {
  display: block;
}

#section-articles-title {
  display: block;
  text-align: left;
/*   background-color: var(--orange); */
  color: #fff;
  font-size: 18px;
  font-family: var(--helv-b);
  font-weight: bold;
  padding: 10px 15px;
  z-index: 0;
}

@media (max-width: 768px) {
  #section-articles-title {
    text-align: left;
  }
  
  .collapsible-sidebar {
    margin-bottom: 30px;
  }
  
  .section-tree .see-all-articles {
    margin-bottom: 60px;
  }
  
  .page-header-description {
    margin: 0;
  }
  .cat-header .breadcrumbs {
    margin: 0;
  }
  .cat-inner {
    margin: 0;
    padding-bottom: 30px;
  }
}

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

  .collapsible-sidebar-body {
    display: block;
  }
}
.sidenav-title {
  display: inline-block; 
  margin: 0 auto; 
  font-size: 15px;
  position: relative;
  font-weight: 600;
  font-family: var(--helv);;
}
.sidenav-item {
  border-radius: 0px;
  color: #fff;
  background-color: var(--mid-blue);
  display: block;
  border-bottom: 1px solid white;
  padding: 13px 30px 14px 20px;
  transition: all .15s ease-in-out;
  font-family: var(--helv-b);
  font-weight: bold;
  font-size: 13px;
}

.sidenav-item:hover { 
  background-color: var(--dark-blue);
  color: #fff;
}

.sidenav-item.current-article,
.sidenav-item.current-article:hover {
/*   background-color: rgba(22, 29, 101, 1); */
  color: #fff;
  text-decoration: none;
  position: relative;
  background-color: #3A93D0;
}

.sidenav-item.current-article:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(/hc/theming_assets/01HZKNNCN26A3TGHM5D70KJBCC);
  position: absolute;
  right: 15px;
  top: 12px;
  filter: saturate(0) brightness(4);
      top: 50%;  /* position the top  edge of the element at the middle of the parent */
   

    transform: translateY(-50%);
/*   transform: translateY(50%); */
}


@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
    margin-top: 0;
  }
}
.article {
  flex: 1 0 auto;
}
.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -40px;
  margin-top: 20px;
}
.article-avatar {
  margin-right: 10px;
}
.article-author {
  margin-bottom: 10px;
}
.article-title {
  font-weight: 400;
  font-size: 52px;
}
.article-title .icon-lock {
  position: relative;
  left: -5px;
  vertical-align: baseline;
}
.article [role="button"] {
  flex-shrink: 0;
  width: 100%;
}
.article-info {
  max-width: 100%;
}
.article-meta {
  display: none;
}
.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 0px;
}
[dir="rtl"] .article-body ul, 
[dir="rtl"] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.article-body ul > ul, 
.article-body ol > ol, 
.article-body ol > ul, 
.article-body ul > ol, 
.article-body li > ul, 
.article-body li > ol {
  margin: 0;
}
.article-body ul {
  list-style-type: disc;
}
.article-body a:visited {
  color: $visited_link_color;
}
.article-body code {
  background: #f7f7f7;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 0 5px;
  margin: 0 2px;
}
.article-body pre {
  background: #f7f7f7;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.article-body blockquote {
  border-left: 1px solid rgba(237, 237, 237, 1);
  color: #333;
  font-style: italic;
  padding: 0 15px;
}
.article-body > p:last-child {
  margin-bottom: 0;
}

.article-body {
  color: var(--dark-blue);
}

.article-body a {
  color: var(--orange);
}

.article-body h1,
.article-body h2,
.article-body h3 {
  letter-spacing: 0;
  font-family: var(--helv-b);
  font-weight: bold;
  padding-top: 30px;
  border-top: 2px solid var(--light-blue);
  text-transform: none;
}

.article-tree ul li a {
  font-family: var(--helv-b);
  font-weight: bold;
  color: var(--dark-blue);
}

.article-tree ul li a:hover {
  color:var(--orange);
}

.article-tree ul, .article-body ul{
  list-style-type: none;
}
.article-tree ul li:before,
.article-body ul li:before{
    content:        "";
    border-color:   transparent var(--light-blue);
    border-style:   solid;
    border-width:   7px 0 7px 10px;
    display:        inline-block;
    height:         0;
    left:           -20px;
    position:       absolute;
    top:            5px;
    width:          0;
}

.article-tree ul li,
.article-body ul li {
  margin-bottom: 10px;
  position: relative;
}


.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: #333;
}
.article-comment-count:hover {
  text-decoration: none;
}
.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(22, 29, 101, 1);
  width: 18px;
  height: 18px;
}
.article-relatives {
  border-top: 1px solid #FEF1F1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}
.article-relatives > *:last-child {
  padding: 0;
}
.article-votes {
  padding: 30px 0;
  text-align: left;
}
.article-vote {
  margin-right: 10px;
  min-width: 110px;
  min-height: 50px;
  width: auto;
  border-color: var(--dark-blue);
  border-radius: 0px;
  color: var(--dark-blue);
  text-transform: uppercase;
  font-family: var(--helv-b);
  font-weight: bold;
    font-size: 16px;
    padding: 3px 13px 3px 40px;
}

.article-vote:hover,
.article-vote:focus,
.article-vote[aria-pressed = true]{
  border-color: var(--orange);
  color:var(--orange);
  background-color: white;
}
.article-vote-label {
  display: none;
}


.article-votes-question {
  color: var(--dark-blue);
  font-family: var(--helv-b);
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  font-size: 20px;
}

@media (max-width: 768px) {
  
  .article-title {
  font-weight: 400;
  font-size: 34px;
  line-height: 34px;
}
  
  .article-votes-question {
    text-align: left;
  }
  
  .article-votes-controls {
  text-align: left;
}
  #votingForm label {
    font-size: 12px;
  }
  
}

.article-more-questions {
  display: none;
}


.article-vote {
  position: relative;
}

.article-vote-up::before {
  content: "";
  -webkit-mask: url(/hc/theming_assets/01HZKNNB0BRB7M22S694YZH8RA) no-repeat 50% 50%;
  mask: url(/hc/theming_assets/01HZKNNB0BRB7M22S694YZH8RA) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--dark-blue);
  position: absolute;
  width: 24px;
  height: 21px;
  left: 18px;
  top: 10px;
  transition: all .15s ease-in-out;
}

.article-vote-down::before {
  content: "";
  -webkit-mask: url(/hc/theming_assets/01HZKNNBM6XBK79GAA7MDC0MNM) no-repeat 50% 50%;
  mask: url(/hc/theming_assets/01HZKNNBM6XBK79GAA7MDC0MNM) no-repeat 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--dark-blue);
  position: absolute;
  width: 24px;
  height: 21px;
  left: 18px;
  top: 15px;
  transition: all .15s ease-in-out;
}

.article-vote:hover:before,
.article-vote:focus:before,
.article-vote[aria-pressed = true]:before
{
  background-color: var(--orange)!important;
  content:''
}

.article
.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}
.article-return-to-top {
  display: none;
}
.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}
.article-return-to-top a {
  color: rgba(0, 0, 0, 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);
}
@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
  .article-title {
    flex-basis: 100%;
  }
  .article [role="button"] {
    width: auto;
  }
  .article-relatives {
    flex-direction: row;
  }
  .article-relatives > * {
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .article {
    flex: 1 0 66%;
    max-width: 66%;
    min-width: 640px;
    padding: 0 30px;
  }
  .article-container {
    flex-direction: row;
  }
  .article-return-to-top {
    display: none;
  }
}


/********************
 SEARCH RESULTS PAGE
********************/
.search-results {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-results-column {
  flex: 1;
}
.search-results-sidebar {
  border-top: 1px solid rgba(237, 237, 237, 1);
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}


@media (max-width: 768px) {
  .search-results-sidebar {
    flex: 0 0 auto;
  }
}

.search-results-sidebar h3 {
  color: white;
  font-size: 18px;
  font-family: var(--helv-b);
  font-weight: bold;
	display:block;
  padding: 10px 15px ;
}
.search-results-sidebar .sidenav-item:hover, 
.search-results-sidebar .sidenav-item.current {
  background-color: #3A93D0;
  color: #fff;
  text-decoration: none;
}
.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}
.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}
.search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
  display: none;
}
.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n + 6) {
  display: none;
}
.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #fff;
}
.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(129, 129, 129, 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 {
  text-transform: capitalize;
  letter-spacing: 0;
  font-family: var(--helv-b);
  font-weight: bold;
  font-size: 26px;
  font-weight: 600;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 10px;
}
.search-results-list {
  margin-bottom: 25px;
}
.search-results-list > li {
  padding: 20px;
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  position: relative;
  
}

.search-results-list > li:before {
  content: "";
    border-color: transparent var(--light-blue);
    border-style: solid;
    border-width: 0.55em 0 0.55em 0.7em;
    display: inline-block;
    height: 0;
    left: 0em;
    position: absolute;
    top: 35px;
    width: 0;
}
.search-results-list > li:first-child {
  
}
.search-results-list > li h2 {
  margin-bottom: 0;
}
.search-results .meta-group {
  display: block;
  align-items: center;
  clear: both;
  color: #666;
}
.search-results .meta-group > li {
  display: block;
}
.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;
  color: var(--dark-blue);
}
.search-result-title a {
  font-family: var(--helv-b);
  font-weight: bold;
  text-transform: capitalize;
  color: var(--dark-blue);
  font-size: 18px;
  display: inline-block;
  letter-spacing: 0px;
}

.search-result-title a:hover {
  color: var(--orange);
}
[dir="ltr"] .search-result-icons {
  float: right;
}
[dir="rtl"] .search-result-icons {
  float: left;
}
.search-result-votes, 
.search-result-meta-count {
  color: #333;
  display: inline-block;
  font-size: 13px;
  padding: 4px 5px;
  position: relative;
}
.search-result-votes-icon, 
.search-result-meta-count-icon {
  color: rgba(22, 29, 101, 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;
}
.search-result-breadcrumbs li, 
.search-result-breadcrumbs li a, 
.search-result-breadcrumbs li a:visited {
  color: inherit;
}
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}
html[lang|="zh"] .search-results-description em {
  font-style: normal;
  background: yellow;
}
@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
  .search-results-column {
    flex: 0 0 75%;
  }
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
  .search-results-sidebar .collapsible-sidebar[aria-expanded="false"] .multibrand-filter-list {
    display: block;
  }
  .search-results .meta-group {
    display: flex;
  }
  .search-results .meta-group > li {
    display: inline;
  }
  .search-results .meta-group li:first-child {
    flex: 1;
  }
  .search-result-breadcrumbs {
    display: table-row;
  }
  .search-result-breadcrumbs li {
    display: table-cell;
  }
}


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


/********************
 MY ACTIVITIES PAGE
********************/
.my-activities-nav {
  background-color: #f2f2f2;
  margin-bottom: 20px;
}
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}
.collapsible-nav-border {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  border-top: 1px solid rgba(237, 237, 237, 1);
}
.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%;
}
[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;
  z-index: 50;
}
.collapsible-nav-toggle[aria-expanded="true"] .x-icon {
  display: inline-block;
  z-index: 50;
}
.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(22, 29, 101, 1);
}
.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}
.collapsible-nav-list li {
  color: rgba(0, 0, 0, 1);
  line-height: 45px;
  order: 1;
}
.collapsible-nav-list li a {
  color: rgba(0, 0, 0, 1);
  display: block;
}
.collapsible-nav-list li:not([aria-selected="true"]),
.collapsible-nav-list li:not(.current) {
  display: none;
}
.collapsible-nav-list li[aria-selected="true"],
.collapsible-nav-list li.current {
  order: 0;
  position: relative;
}
.collapsible-nav-list li[aria-selected="true"] a,
.collapsible-nav-list li.current a {
  color: rgba(0, 0, 0, 1);
}
.collapsible-nav[aria-expanded="true"] li:not([aria-selected="true"]),
.collapsible-nav[aria-expanded="true"] li:not(.current) {
  display: block;
}
@media (min-width: 768px) {
  .collapsible-nav {
    flex-direction: row;
  }
  .collapsible-nav-border {
    border-top: 0;
  }
  .collapsible-nav-toggle {
    display: none;
  }
  .collapsible-nav-list {
    flex-direction: row;
  }
  .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: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: block;
  }
  .collapsible-nav-list li[aria-selected="true"] {
    padding: 15px 0 11px 0;
  }
  .collapsible-nav-list li[aria-selected="true"],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid rgba(22, 29, 101, 1);
    order: 1;
  }
}
.my-activities-sub-nav {
  margin-bottom: 30px;
}
.my-activities-table .striped-list-title {
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}
.my-activities-table thead {
  display: none;
}
.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}
.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 thead {
    display: table-header-group;
  }
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}
@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 th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

/*************** REQUESTS TAB ***************/
.requests-search {
  width: 100%;
}
.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}
.requests-table-toolbar .request-table-filter {
  width: 100%;
}
.requests-table-toolbar .request-filter {
  display: block;
}
.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}
.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}
.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;
}
.requests .requests-table thead {
  display: none;
}
.requests .requests-table-info {
  display: block;
}
.requests .requests-table .requests-link {
  position: relative;
}
.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}
@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
  .requests-table-toolbar .organization-subscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe {
    margin: 0 10px 0 0;
  }
  .requests .requests-table-meta {
    display: none;
  }
  .requests .requests-table thead {
    display: table-header-group;
  }
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

/*************** FOLLOWING TAB ***************/
.subscriptions-table td:last-child {
  display: block;
}
.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;
}
@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

/*************** CONTRIBUTIONS TAB ***************/
.contributions-table td:last-child {
  color: #333;
  font-size: 13px;
}
.no-activities {
  color: #333;
}
@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}


/********************
 REQUEST PAGE
********************/

.form {
  width: 100%;
  margin: 0 auto;
}
.request-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background-color: white;
}
.request-container .comment-container {
  min-width: 0;
}
.request-breadcrumbs {
  margin-bottom: 40px;
}
.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;
}
.request-main .comment-form-controls {
  display: block;
}
.request-main .comment-ccs {
  display: block;
}
.request-main .comment-show-container {
  border-radius: 0px;
  border: 1px solid rgba(237, 237, 237, 1);
  color: #333;
  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(22, 29, 101, 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(22, 29, 101, 1);
}
.request-main input#mark_as_solved {
  display: none;
}
.request-title {
  width: 100%;
}
.request-details {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  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: #333;
  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;
}
@media (min-width: 1024px) {

  .request-breadcrumbs {
    margin-bottom: 60px;
  }
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
  .request-title {
    border-bottom: 1px solid rgba(237, 237, 237, 1);
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}
.request-sidebar {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  border-top: 1px solid rgba(237, 237, 237, 1);
  flex: 1 0 auto;
  order: 0;
}
.request-sidebar h2 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
@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 {
    display: none;
  }
}


/* REQUEST TYPE SELECTION */

.request-button-box {
  display: flex;
  justify-content: center;
/*   flex-wrap: wrap; */
}

.request-button {
  width: 350px;
  text-align: center;
  cursor: pointer;
  height: 280px;
/* 	border: 1px solid rgb(174, 148, 109); */
  border: 1px solid #787878;
  
}

.request-button:hover {
  transition: border .2s ease-in-out;
  border: 1px solid #A9A9A9;
}
.request-button:hover .request-title-box {
 background-color: #A9A9A9;
}

.request-button.active {
  border: 1px solid rgb(174, 148, 109);
/*   padding-top: 0; */
}

.request-button.active .request-title-box {
  transition: background-color .2s ease-in-out;
  background-color: rgb(174, 148, 109);
}

.request-button h2 {
  width: 100%;
  color: white; 
  padding-bottom: 5px;
}

.request-button p {
  margin: 5px;
}

.request-button.email {
  margin-right: 20px;
}

.contact-form {
  margin: 0px auto 30px;
  width: 100%;
  
  
flex-grow: 1;
}

.new-request-title {
  text-align: center;
  margin-bottom: -10px;
}

.request-sub {
  text-align: center;
  color: var(--dark-blue);
  font-family: var(--helv-b);
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 18px;
}

.request-container {
/*   min-height: 60vh; */
  justify-content: center;
  
}

  .request-container {
/*     align-items: flex-start; */
/*     flex-direction: row; */
  }

.request-title-box {
  	padding-top: 20px;
    background-color: #787878;
  
}

.request-title-svg svg {
  height: 70px;
  width: 70px;
  fill: #fff;
}




/********************
 USER PROFILE PAGE
********************/
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}
.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}
.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;
}
.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: #333;
  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;
}
.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}
.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}
.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(22, 29, 101, 1);
  border-radius: 0px;
  color: rgba(22, 29, 101, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}
.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}
.profile-nav {
  background-color: #f2f2f2;
  margin-bottom: 37px;
}
.profile-section {
  width: 100%;
}
.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: #333;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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;
}
.profile-badges-items {
  margin-top: 25px;
}
.profile-badges-item {
  border-top: 1px solid rgba(237, 237, 237, 1);
  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: #333;
  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;
}
.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;
}
.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}
[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 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;
}
.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}
[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}
.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: 0px;
  background-color: #f7f7f7;
}
.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;
}
.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}
@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
  .profile-stats-activity .stat {
    flex-direction: column;
  }
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
  .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;
  }
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
  .profile-stats-counters .stat {
    flex-direction: column;
  }
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
  .profile-private-badge {
    flex-basis: auto;
  }
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
  .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: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
  .profile-activity:not(:last-child) {
    border-left: 1px solid rgba(237, 237, 237, 1);
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid rgba(237, 237, 237, 1);
  }
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
  .profile-activity-icon {
    left: -14px;
  }
  [dir="rtl"] .profile-activity-icon {
    right: -14px;
  }
}
@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;
  }
  .profile-stats-counters .stat {
    flex-direction: row;
  }
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
  .profile-section {
    width: calc(100% - 330px);
  }
}


/********************
 ERROR PAGE
********************/
.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5%;

  min-height: 40vw;
}
.error-page h1,
.error-page h2 {
  text-transform: capitalize;
  font-family: var(--helv-b);
  font-weight: bold;
  letter-spacing: 0;

}

.error-page a {
  background-color: var(--orange);
  padding: 10px 40px;
  border-radius: 0px;
  color: white;
  font-family: var(--helv-b);
  margin-top: 30px;
  display: block;
    width: 400px;
  text-align: center;
  position: relative;
  font-size: 18px;
  transition: background .2s ease-in-out; 
}

.error-page a:hover {
    background-color: var(--dark-blue);
}


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


/********************
 COMMUNITY LIST PAGE
********************/
.community-hero {
  background-image: url(/hc/theming_assets/01HZKNNEG5SFB0PTB5YGTW9G8G);
  margin-bottom: 10px;
}
.topics {
  max-width: none;
  width: 100%;
}
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}
.blocks-item {
  border: 1px solid rgba(22, 29, 101, 1);
  border-radius: 0px;
  box-sizing: border-box;
  color: rgba(22, 29, 101, 1);
  display: flex;
  flex: 1 0 340px;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}
.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: rgba(22, 29, 101, 1);
}
.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}
.blocks-item-internal {
  background-color: transparent;
  border: 1px solid rgba(237, 237, 237, 1);
}
.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}
.blocks-item-internal a {
  color: rgba(0, 0, 0, 1);
}
.blocks-item-link {
  color: rgba(22, 29, 101, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  border-radius: inherit;
}
.blocks-item-link:hover, .blocks-item-link:active {
  text-decoration: none;
}
.blocks-item-link:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(22, 29, 101, 1);
  text-decoration: none;
}
.blocks-item-title {
  margin-bottom: 0;
  font-size: 16px;
}
.blocks-item-description {
  margin: 0;
}
.blocks-item-description:not(:empty) {
  margin-top: 10px;
}
.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
  .blocks-item {
    margin: 0 15px 30px;
  }
}
.community-featured-posts .title {
  font-size: 18px;
  font-weight: 600;
}
.community-featured-posts, 
.community-activity {
  padding-top: 40px;
  width: 100%;
}

/********************
 COMMUNITY TOPIC PAGE
********************/
.topic-header {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  font-size: 13px;
}
.topic-header .dropdown {
  display: block;
  border-top: 1px solid rgba(237, 237, 237, 1);
  padding: 10px 0;
}
.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

/********************
 COMMUNITY POST PAGE
********************/
.post {
  flex: 1;
  margin-bottom: 10px;
}
.post-container {
  display: flex;
  flex-direction: column;
}
.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
.post-header .status-label {
  vertical-align: super;
}
.post-title {
  margin-bottom: 20px;
  width: 100%;
}
.post-title h1 {
  display: inline;
  vertical-align: middle;
}
.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.post-avatar {
  margin-bottom: 30px;
}
.post-content {
  font-family: var(--helv);;
  line-height: 1.6;
  word-break: break-word;
}
.post-info-container {
  display: flex;
  margin-bottom: 40px;
}
.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}
[dir="rtl"] .post-info {
  padding-right: 0;
  padding-left: 20px;
}
.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}
[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}
.post-body img {
  height: auto;
  max-width: 100%;
}
.post-body ul, 
.post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}
[dir="rtl"] .post-body ul, 
[dir="rtl"] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.post-body ul > ul, 
.post-body ol > ol, 
.post-body ol > ul, 
.post-body ul > ol, 
.post-body li > ul, 
.post-body li > ol {
  margin: 0;
}
.post-body ul {
  list-style-type: disc;
}
.post-body a:visited {
  color: $visited_link_color;
}
.post-body code {
  background: #f7f7f7;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 0 5px;
  margin: 0 2px;
}
.post-body pre {
  background: #f7f7f7;
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.post-body blockquote {
  border-left: 1px solid rgba(237, 237, 237, 1);
  color: #333;
  font-style: italic;
  padding: 0 15px;
}
.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.post-comment-count {
  color: #333;
}
.post-comment-count:hover {
  text-decoration: none;
}
.post-comment-count .icon-comments {
  color: rgba(22, 29, 101, 1);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}
.post-comments {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
  .post-title h1 {
    margin-right: 5px;
  }
}
@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
  .post-container {
    flex-direction: row;
  }
  .post-comments {
    margin-bottom: 0;
  }
}
.post-sidebar {
  border-top: 1px solid rgba(237, 237, 237, 1);
  flex: 1;
  padding: 30px 0;
  text-align: center;
}
.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
}
@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;
  }
}


/****************************************
/
/
/ S N I P P E T S
/
/
****************************************/
/********************
 HEADER
********************/
.header {
  background-color: rgba(0, 42, 106, 1);
/*   position: fixed; */
  width: 100%;
  z-index: 100;
  transition: background-color .15s ease-in-out;
}
.header-container {
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  align-items: center;
  display: flex;
  min-height: 70px;
  justify-content: space-between;
/*   flex-wrap: wrap; */
  
}



.header-middle {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.header-hc-name {
  color: white; 
  font-family: var(--goth);;
  letter-spacing: 0px;
  margin-left: 30px;
  font-size: 24px;
}

.header-hc-name:hover,
.header-hc-name:focus,
.header-hc-name active {
color: var(--light-blue);
}

.header-my-acc {
  margin-right: 20px;
  display: flex;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  font-family: var(--goth);;
  transition: color .15s ease-in-out; 
}

.header-my-acc svg {
  fill: white;
  transition: fill .15s ease-in-out;
  margin: 0 10px;
}



.header-my-acc:hover,
.header-my-acc:active,
.header-my-acc:focus {
  color: var(--orange);
}
.header-my-acc:hover svg,
.header-my-acc:active svg,
.header-my-acc:focus svg {
    fill: var(--orange);
}

.header-return a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  color: white;
  font-family: var(--helv);;
  background-color: var(--orange);
  width: 266px;
  height: 37px;
  font-size: 13px;
  transition: background-color .15s ease-in-out;
  position: relative;
  z-index: 2;
}

.header-return a:after {
  background-color: var(--orange);
  content: "";
    width: 26px;
    height: 26px;
    position: absolute;
    right: -13px;
    top: 5.5px;
    transform: rotate(45deg);
    z-index: -1;
    transition: background-color .15s ease-in-out;

}

.header-return a:hover,
.header-return a:hover:after {
  background-color: var(--light-blue);
}

.header-return a svg {
  margin-right: 10px;
}

.header-return a svg path {
  fill: white;
  transition: fill .15s ease-in-out;
}

.header-return a:hover svg path {
  fill: var(--dark-blue);
}

.header-return a:hover .highlight {
  color: white;
  transition: color .15s ease-in-out;
}

.header-return a:hover .highlight {
  color: var(--dark-blue);
}

.small-logo {
  display: none;
}


@media (max-width: 1060px) {
  .header-container {
  flex-wrap: wrap;
}
  .header-middle {
    flex-grow: 1;
    width:0;
  }
  .header-return {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
}

@media (max-width: 768px) {
  
  
  .header-return a {
    width: 100%;
    transform: translateX(-2%);
  }
.header-my-acc {
  margin-right: 0px;
  }

    .header-return {
     margin: 18px 0; 
  }
  
    .header-middle {
    flex-wrap: wrap;
    flex-direction: column;
      align-items: flex-end;
  }
  
  .header-my-acc {
    transform: translateY(10px);
  }
  
  .header-hc-name {
    margin-top: 10px;
  }
  
  .header-my-acc svg {
    margin-right: 0;
  }
}
@media (max-width: 400px) {
    .header-hc-name {
    font-size: 20px;
  }
}
@media (max-width: 620px) {
  .header-my-acc svg {
/*     width: 95%; */
  }
    .small-logo {
  display: block;
}
  
     .header-container .main-logo img {
    margin-top: 15px;
		width: 166px;
    height: 63px;
}
  
}
.header-brand {
  max-width: 200px;
}
.header-brand-link {
  display: inline-block;
}
.header-brand-link:hover,
.header-brand-link:focus,
.header-brand-link:active {
  text-decoration: none;
}
.header-brand-logo {
  max-height: 35px;
  vertical-align: middle;
}
.nav-wrapper {
  width: 100%;
}

.button-box {
  position: absolute;
  top: 12px;
}
.menu-button {
  background: none;
  border: 0;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  width: auto;
  padding-top: 5px;
}
.menu-button .icon-menu {
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
[dir="rtl"] .menu-button {
  margin-left: 10px;
  margin-right: 0;
}
.menu-button:hover, 
.menu-button:focus, 
.menu-button:active {
  cursor: pointer;
}
.menu-text {
  display: inline-block;
  font-family: var(--helv);
  font-size: 12px;
  transition: color .15s ease-in-out;
  margin: 0;
  margin-left: 12px;

}

@media (max-width: 760px) {
  .menu-text {
    display: none;
  }
}
.icon-close {
transform: translateY(0px);
  color: #000000;
}


.user-nav {
  white-space: nowrap;
}
.user-nav[aria-expanded="true"] {
  background-color: #fff;
    color: #4d4d4d;;
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 60px;
  z-index: 50;
  height: 100vh;
  transition: all .2s ease-in-out;
}

.menu-button[aria-expanded="true"] .menu-text {
   vertical-align: text-top;
  padding-top: 1px;
}

.user-nav[aria-expanded="true"] a {
    color: #4d4d4d;;
 text-transform: capitalize;
  font-size: 24px;
  font-family: var(--helv);
}

.user-nav[aria-expanded="true"] .primary-nav-list {
 width: 520px;
}



.top-nav {
  display: flex;
  margin: 0 auto;
  width: 100%;
  justify-content: center; 
}
.primary-nav-list {
}
.primary-nav-item,
.secondary-nav-item {
  display: none;
}

.primary-nav-item a,
.secondary-nav-item a {
  color: #fff
}

.user-nav[aria-expanded="true"] .primary-nav-item,
.user-nav[aria-expanded="true"] .secondary-nav-item {
  display: block;
  padding: 16px 0;
}
.user-nav[aria-expanded="true"] .dropdown {
  display: block;
}
.user-nav[aria-expanded="true"] .user-info .dropdown-menu {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  margin-top: 0;
  min-width: 0;
  padding: 0;
  position: static;
  text-align: left;
}
.user-nav[aria-expanded="true"] .dropdown-menu [role="menuitem"] {
  color: rgba(129, 129, 129, 1);
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
  padding: 0;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}
.user-nav[aria-expanded="true"] .dropdown-menu [role="menuitem"]:last-child {
  margin-bottom: 0;
}
.user-nav[aria-expanded="true"] .dropdown-menu [role="menuitem"]:active,
.user-nav[aria-expanded="true"] .dropdown-menu [role="menuitem"]:focus,
.user-nav[aria-expanded="true"] .dropdown-menu [role="menuitem"]:hover {
  text-decoration: underline;
}

 .menu-button[aria-expanded="true"] .menu-text {
  color: #000;
}

.primary-nav-link {
  border: 0;
  color: rgba(129, 129, 129, 1);
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 0 20px 0 0;
  width: auto;
}
[dir="rtl"] .primary-nav-link {
  padding: 0 0 0 20px;
}
.primary-nav-link:hover, 
.primary-nav-link:focus, 
.primary-nav-link:active {
  background-color: transparent;
  color: rgba(129, 129, 129, 1);
  text-decoration: underline;
}
.user-info {
  display: inline-block;
}
.user-info .dropdown-toggle {
  display: none;
}
.user-info .dropdown-toggle::after {
  display: none;
}
.user-info > button {
  border: 0;
  color: rgba(129, 129, 129, 1);
  font-size: 14px;
  line-height: 20px;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}
.user-info > button:hover, 
.user-info > button:focus {
  color: rgba(129, 129, 129, 1);
  background-color: transparent;
}
.user-info > button::after {
  color: rgba(129, 129, 129, 1);
  padding-right: 15px;
}
[dir="rtl"] .user-info > button::after {
  padding-left: 15px;
  padding-right: 0;
}
.user-info > button .user-avatar {
  margin-right: 5px;
}
.secondary-nav-link {
  border: 0;
  color: rgba(129, 129, 129, 1);
  display: block;
  font-size: 12px;
  line-height: 20px;
  width: auto;
  line-height: 24px;
}
.secondary-nav-link:hover, 
.secondary-nav-link:focus, 
.secondary-nav-link:active {
  background-color: transparent;
}
@media (max-width: 1180px) {
  .nav-wrapper .hide-on-mobile {
    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;
  }
  .header-icon {
    height: 14px;
    width: 30px;
  }
  .next-icon {
    display: inline-block;
        -webkit-text-size-adjust: 100%;
    font: 1.4rem 'proxima-nova',Arial,sans-serif;
    -webkit-tap-highlight-color: transparent;
    font-size: 24px;
    font-weight: 500;
    color: rgb(24, 24, 24);
    display: flex;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    width: 24px;
    height: 24px;
    z-index: -500;
  }
  .user-nav {
    display: flex;
  }
  .primary-nav-item a {
    width: 100%;
    display: block;


  }
  .primary-nav-item {
    position: relative;
    border-bottom: 1px solid 	#E8E8E8;
  }
  .top-nav {
  }
}
@media (min-width: 1180px) {
  
  .header-container {
    
  }
  .header-brand {
    display: flex;

    position: absolute;
    top: 0;
    z-index: 50;
  }
  .header-brand-link {
    align-items: center;
    display: flex;
  }
  .header-brand-logo {
    
  }
  
  .header-left-list {
    top: 12px;
  }
  .user-nav {
    position: relative;
    width: 100%;
  }
  .menu-button {
    display: none;
  }
  .primary-nav-list {
    display: flex;
    min-height: 52px;
/*     width: 100%; */
		font-size: 16px;
    font-weight: 500;
    font-family: var(--helv);
  }
  .primary-nav-item,
  .secondary-nav-item {
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  
  .primary-nav-item {
    height: 90px;
    padding: 0px 20px;

    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
  }
  .primary-nav-item a {
    transition: color 0.3s ease-in-out;
/*     margin-top: 3px; */
  }
  
  
  
  .primary-nav-item:hover a {
    color: rgba(22, 29, 101, 1);
    
  }
  .primary-nav-link {
    align-self: center;
  }
  .user-info .dropdown-toggle {
    display: flex;
  }
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
  .secondary-nav-list {
    display: flex;
    flex-basis: 100%;
    justify-content: flex-start;
    width: 100%;
    text-transform: uppercase;
  }
  .secondary-nav-item {
    padding: 12px 16px;
  }
  .secondary-nav-link {
    text-align: center;
  }
}
@media (min-width: 1160px) {
  .header-container {
    padding: 0 40px;
    width: 100%;
   
  }
}


/********************
 HOME HERO
********************/
.home-hero {
  background-image: url(/hc/theming_assets/01HZKNNEBPMS15FRSPNTQ7XN8X);
  background-position: 70% 50%;;
  background-size: cover;
  padding: 10rem 0 10.5rem;
  text-align: center;
}


.home-hero-inner {
display: flex;
  flex-direction: column;
}

.hero-inner.home-hero-inner.title {
  
}
.home-hero-primary.title {
}
.home-hero-heading {
  color: var(--dark-blue);
  margin-bottom: 1rem;
  display: block; 
  width: 100%;
  font-family: var(--goth);;
  text-transform: uppercase;
  font-size: 42px;

  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .home-hero {
     padding: 1.5rem 0 8rem; 
    background-position: top; 
    background-image: url(/hc/theming_assets/01HZKNNDNJ7EWV2XEWMH3NV685);
  }
  
  .home-hero-heading {
    font-size: 34px;
    width: 80%;
    margin: 0 auto 15px;
  }
  
}
.home-hero-subheading {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.home-hero-search {
  position: relative;
}
.home-hero-articles {
  background: #FFFFFF;
  border-radius: 0px;
  margin-top: 1rem;
  padding: 1.75rem 0;
  text-align: left;
}
.home-hero-articles-heading {
  margin-bottom: 0.25rem;
  align-self: stretch; 
  width: 100%;
}
.home-hero-articles-list {
  align-items: flex-start;
     display: flex; 
  flex-wrap: wrap;  
  justify-content: space-between;
  max-width: 1000px;
}
.home-hero-articles-item,
.recent-activity-item-link {
  width: 100%; 
  font-family: var(--helv);
/*    height: 80px;  */
    align-items: center;
    display: flex;
}

.home-hero-articles-item,
.recent-activity-item {

   height: 40px; 

}
.home-hero-articles-item h6 {
  font-family:var(--helv);
}

.home-hero-articles-item a {
  width: 100%;
}

.home-hero-articles-item:before,
.recent-activity-item:before {
    content:        "";
    border-color:   transparent var(--light-blue);
    border-style:   solid;
    border-width:   0.55em 0 0.55em 0.7em;
    display:        block;
    height:         0;
    left:           -1em;
    position:       relative;
    top:            0em;
    width:          0;
}

.recent-activity-item:before {
  top:            0.8em;
}


.home-hero-articles-link,
.recent-activity-item-link {
  color: var(--dark-blue);
  width: 100%;
  display: block; 
  font-family: var(--helv);
  font-size: 15px;
}

.recent-activity-item-link {
  display: flex;
}
.home-hero-articles-link:active,
.home-hero-articles-link:focus,
.home-hero-articles-link:hover,
.recent-activity-item-link:active,
.recent-activity-item-link:focus,
.recent-activity-item-link:hover{
  color: var(--orange)
}
.home-hero-articles-title {
  font-weight: normal;
  margin-bottom: 0;
}

.promoted-activity-box {
  display: flex;
  flex-wrap: wrap;
}

.promoted-box {
  width: 50%;
}

@media (max-width: 768px) {
  
  .home-hero-articles-link,
.recent-activity-item-link {
  font-size: 12px;
  
  }
  .promoted-box {
  width: 100%;
}
}




.recent-activity-list, 
.home-hero-articles-list {
  padding-left: 16px;
}



.recent-activity-item {
/*   height: 50px; */
  display: flex;
}
.recent-activity-item-meta,
.recent-activity-item-parent {
  display: none; 
}

.promoted-see-more {
padding-top: 15px;
}

.recent-activity-controls a,
.promoted-see-more {
  text-transform: uppercase;
  font-family: var(--helv-b);
  font-weight: bold;
  color: var(--orange);
  display: inline-block; 
}

.recent-activity-controls a:hover,
.promoted-see-more:hover,
.recent-activity-controls:hover .recent-activity-controls::after,
.promoted-see-more:hover .promoted-see-more:after
 {
   color: var(--orange);
  filter: hue-rotate(216deg) saturate(5) brightness(0.4);
}

.recent-activity-controls {
  display: inline-block;
}

.section-tree .see-all-articles:after,
.recent-activity-controls a:after,
.promoted-see-more:after {
  content: "";
  position: relative;
	width: 15px;
  height: 15px;
  right: 2px;
  top: 2px;
  background-image: url(/hc/theming_assets/01HZKNNCN26A3TGHM5D70KJBCC);
  display: inline-block;
  background-size: 100% 100%;
}

.promoted-see-more:after {
  right: 6px;
}

.hidden-promoted {
  display: none;
}

.promoted-box h5 {
  color: var(--dark-blue);
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .home-hero-articles-item { 
/*      width: 100%; 
    height: 100%; */
  }
}
@media (min-width: 768px) {
  .promoted-box:first-child {
  padding-right: 30px;
}
  
	.home-hero {

  }
  .home-hero-inner {
  }
  .home-hero-heading {
  }
  .home-hero-subheading {
  }
  .home-hero-search {
  }
  .home-hero-articles {
  }
  .home-hero-articles-list {
  }
  .home-hero-articles-item {
   
  }
  .home-hero-articles-link {
    padding: 0px
  }
  .home-hero-articles-link:active,
  .home-hero-articles-link:focus,
  .home-hero-articles-link:hover {
  }
  .home-hero-articles-title {
  }
}
.home-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

@media (min-width: 1024px) {
	.home-hero {
  }
  
  .home-hero-primary {
/*     max-width: 47.5%;
    width: 47.5%; */
  }
  .home-hero-heading {
    text-align: middle;
  }
  .home-hero-subheading {
    text-align: middle;
  }
  .home-hero-search {
    text-align: middle;
  }
  .home-hero-articles {
    margin-top: 0;

    padding: 2.5rem 0rem;
    width:100%;
  }
  .home-hero-articles-list {
  }
  .home-hero-articles-item {
/*     height: 50px;  */
  }
  .home-hero-articles-link {
  }
  .home-hero-articles-link:active,
  .home-hero-articles-link:focus,
  .home-hero-articles-link:hover {
  }
  .home-hero-articles-title {
  }
}
@media (min-width: 1160px) {
	.home-hero {
  }
  .home-hero-inner {
  }
  .home-hero-heading {
  }
  .home-hero-subheading {
  }
  .home-hero-search {
  }
  .home-hero-articles {
  }
  .home-hero-articles-list {
  }
  .home-hero-articles-item {
  }
  .home-hero-articles-link {
  }
  .home-hero-articles-link:active,
  .home-hero-articles-link:focus,
  .home-hero-articles-link:hover {
  }
  .home-hero-articles-title {
  }
}

/********************
 PROMOTED ARTICLES
********************/
.promoted-articles {
}
.promoted-articles-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.promoted-articles-item {

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 1%;
  overflow: hidden;
  text-align: center;
}
.promoted-articles-block {
  color: rgba(0, 0, 0, 1);
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 1.75rem 1.5rem;
}
.promoted-articles-image {
  display: block;
  max-width: 100%;
}
.promoted-articles-title {
  border: 1px solid #ae946d;
  display: inline-block; 
  padding: 10px 20px; 
  background-color: #ae946d;
  color: #fff;
  margin-top: 70%;
  font-size: 1.3rem;
  text-transform: uppercase;
  width: 220px;
  font-size: 16px;
}

@media (max-width: 768px) {
  
}

.popular-title {
  height: 400px;
	background-size: cover;
  background-repeat: repeat;
  width: 370px;
  display: flex;
  justify-content: center;
  align-items: flex-end; 
  transition: opacity .2s ease-in-out;
}

.popular-title:hover {
  opacity: 0.8;
   filter: grayscale(100%);
}

.popular-title:hover .promoted-articles-title {
    border: 1px solid #000;
    background-color: #000;
}

:root {
  --lin-g: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(255,255,255,0.0) 98%);
}

.title-1 {
  background-image: var(--lin-g), url($block_image_1);
}
.title-2 {
  background-image: var(--lin-g), url($block_image_2);
}

.title-3 {
  background-image: var(--lin-g), url($block_image_3);
}



@media (max-width: 1159px) {
  .popular-title {
    height: 28vw;
    width: 28vw;
  }
}
@media (max-width: 768px) {
  .popular-title {
    height: 15vw;
    width: 90vw;
    align-items: center;
  }
  .promoted-articles-title {
    margin: 0 0;
    width: 100%;
/*     height: 100%; */
/*     margin-top: 5%; */
  }
}
.promoted-articles-button {
  margin: auto;
  margin-bottom: 0;
}
@media (min-width: 768px) {
	.promoted-articles {
	}
  .promoted-articles-list {
    flex-direction: row;
    justify-content: space-between;
    margin-left: -1%;
  	margin-right: -1%;
  }
  .promoted-articles-item {
  }
  .promoted-articles-block {
    padding: 2.5rem 2rem;
  }
  .promoted-articles-image {
  }
  .promoted-articles-title {
  }
  .promoted-articles-button {
  }
}
@media (min-width: 1024px) {
  .promoted-articles {
	}
  .promoted-articles-list {
  }
  .promoted-articles-item {
  }
  .promoted-articles-block {
  }
  .promoted-articles-image {
  }
  .promoted-articles-title {
  }
  .promoted-articles-button {
  }
}
@media (min-width: 1160px) {
  .promoted-articles {
	}
  .promoted-articles-list {
  }
  .promoted-articles-item {
    width: 31.3333%;
  }
  .promoted-articles-block {
  }
  .promoted-articles-image {
  }
  .promoted-articles-title {
  }
  .promoted-articles-button {
  }
}

/********************
 KNOWLEDGE BASE
********************/
.knowledge-base {
}
.tab-list-container {
  margin-bottom: 20px;
  position: relative;
}
.tab-dropdown-link {
  display: flex;
  color: rgba(0, 0, 0, 1);
  cursor: pointer;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(248, 248, 248, 1);
  border: 1px solid rgba(237, 237, 237, 1);
  border-radius: 0px;
  display: inline-block;
  position: relative;
  text-align: left;
  width: 100%;
}
.tab-dropdown-link::after {
  content: '';
  background-image: url('/hc/theming_assets/01HZKNNDA1HCY093SA7X8QYDP0');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 16px;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -8px;
  transform: rotate(0deg);
  transition: all 0.2s ease-in;
  width: 16px;
}
.tab-dropdown-link.open::after {
  transform: rotate(180deg);
  transition: all 0.2s ease-in;
}
.tab-dropdown-link:active,
.tab-dropdown-link:focus,
.tab-dropdown-link:hover {
  border: 1px solid rgba(237, 237, 237, 1);
  outline: none;
}
.tab-list {
/*   box-shadow: 0px 8px 16px rgba(12, 0, 51, 0.1); */
  display: flex;
  flex-wrap: wrap;
/*   position: absolute; */
}
.tab-list.open {
    background: #fff;
    border-radius: 0px;
/*     box-shadow: 0px 8px 16px rgba(12, 0, 51, 0.1); */
    display: block;
    width: 100%;
    z-index: 900;
}
.tab-list-item {
  width: 50%;

}
.tab-list-item:last-child {
  border-bottom: none;
}

/* TAB ICONS */

.tab-svg {
  width: 80px;
  height: 80px;
  fill: #000;
  background-size: 100% 100%;
  background-repeat: no-repeat;
/*   margin: 20px auto; */
  margin-bottom: 10px;
  transform: scale(0.9);
  transition: transform .2s ease-in-out;
}

@media (max-width: 1159px) {
  .tab-svg {
    width: 60px;
    height: 60px;
/*     margin: 30px auto 20px; */
  }
}

@media (max-width: 768px) {
  .tab-svg {
/*     display: none;  */
  }
}
.tab-list-item:nth-child(1) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNESQD1QEZ8QW32H8PRJS);
}
.tab-list-item:nth-child(2) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNEXA3Q834CV4KY6DYT9T);
}
.tab-list-item:nth-child(3) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNF1K659DY1FV9W7Y2DRK);
}
.tab-list-item:nth-child(4) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNF51VS8X0SFHBX17Z1EG);
}
.tab-list-item:nth-child(5) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNF8P4TKM9YH22CZHMEWJ);
}
.tab-list-item:nth-child(6) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNFDVYPWKCNACCCRKP8QW);
}
.tab-list-item:nth-child(7) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNFH9TYW5DPQET2PT9C4F);
}
.tab-list-item:nth-child(8) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNFNWT6VEKM9276Q04BN1);
}
.tab-list-item:nth-child(9) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNFS87T0NXH8W281TZ2PD);
}
.tab-list-item:nth-child(10) .tab-svg {
  background-image: url(/hc/theming_assets/01HZKNNFZTGPC82T0K3CZ7AGE1);
}


.tab-list-item:hover {
/*   opacity: 0.9; */
/*   transform: scale(0.98); */
}
.tab-list-link {
  background: #ededed;
  border: 2px solid #ededed;
  color: rgba(0, 0, 0, 1);
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  text-decoration: none;
  box-shadow: none; 
  transition: all 0.1s ease-out;
}

span.tab-name {
  font-family: var(--helv-b);
  font-weight: bold;
  display: inline-block;
  font-size: 26px;
  color: rgba(22, 29, 101, 1);
}

span.tab-description {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  display: block;
  margin-top: auto;

}

@media (max-width: 500px) {
  
}
.tab-list-link[aria-selected="true"],
.tab-list-link:active,
.tab-list-link:focus,
.tab-list-link:hover {
	color: #000;
  outline: none;
  text-decoration: none;
  transition: opacity 0.15s ease-in;
}
.tab-list-link:focus,
.tab-list-link:hover {

}
.tab-list-link[aria-selected="true"],
.tab-list-link:active {
  border-color: rgba(0, 0, 0, 1);
}

.tab-list-link[aria-selected="false"] {
  background: #f8f8f8;
}
.tab-list-link > span {
  width: 100%;
}
.tab-list-icon {
  border-radius: 0px;
  display: inline-block;
  height: 32px;
  margin-right: 8px;
  width: 32px;
}
.tab-list-check {
  display: none;
  height: 32px;
  margin-left: 8px;
  width: 32px;
}
.tab-list-link[aria-selected="true"] .tab-list-check {
  display: inline-block;
}

.tab-list-link:hover {
  border: 2px solid var(--orange);
}

.tab-list-link:hover .tab-name {
  color: var(--orange);
}
.tab-pane {
  padding: 0 0 15px 0;
}
.tab-content p {
  color: rgba(0, 0, 0, 1);
  display: none;
}
.tab-section-blocks {
  -webkit-column-count: 1; 
  -moz-column-count: 1;  
  column-count: 2;
  margin-bottom: 2em;
}
.tab-section-block {

  break-inside: avoid;
  break-after: always;
  margin-bottom: 15px;
  padding: 30px 25px 15px 0px;
  width: 100%;
}
.tab-section-block:nth-child(3n + 1) {
  margin-left: 0;
}
.tab-section-block:nth-child(3n) {
  margin-right: 0;
}

.tab-section-block-title-link {
  color: rgba(0, 0, 0, 1);
  transition: all 0.1s ease-out;
}
.tab-section-block-title-link:active,
.tab-section-block-title-link:focus,
.tab-section-block-title-link:hover {
  color: rgba(129, 129, 129, 1);
  text-decoration: none;
  transition: all 0.15s ease-in;
}
.tab-section-block-title {
  color: rgba(33, 33, 33, 1);
}
.tab-section-list-item {
  margin-bottom: 16px;
}
.tab-section-list-title {
	margin-bottom: 0.75rem;
	font-weight: normal;
}
.view-more {
  font-weight: 800;
  color: rgba(22, 29, 101, 1);
  font-size: 0.9rem;
}

.tab-section-list-link {
  color: rgba(0, 0, 0, 1);
  transition: all 0.1s ease-out;
}
.tab-section-list-link:active,
.tab-section-list-link:focus,
.tab-section-list-link:hover {
  color: rgba(129, 129, 129, 1);
  text-decoration: none;
  transition: all 0.15s ease-in;
}


/* @media (min-width: 768px) { */
  .tabs {
    padding: 10px 0 30px;
  }
  .tab-container {
    align-items: flex-start;
  }

.tab-container h2 {
  text-align: center; 
  margin: 45px 0 40px;
}

.tab-container .promoted-box h2 {
  text-align: left;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 5px;
}
	.tab-list-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    max-width: 1160px;
    width: 100%;
  }
  .tab-dropdown-link {
    display: none;
  }
  .tab-list {
    box-shadow: none;
    display: flex;
    justify-content: flex-start;
    position: static;
    width: 100%;
    flex-wrap: wrap;
    gap: 2%;
    
  }
  .tab-list-item {
    border-bottom: none;
    display: flex;
    margin-bottom: 20px;
    width: 32%;
  }
  .tab-list-item:last-child {
    margin-right: 0;
  }
  .tab-list-link {
    height: 224px;
    width: 100%;
    color: rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; 
/*     font-weight: bold; */
    letter-spacing: 0.15px;
    line-height: 32px;
    text-decoration: none;
/*     transition: all 0.1s ease-out; */
    text-align: center;
    padding: 1em 1em;
  }
  .tab-list-link[aria-selected="true"],
  .tab-list-link:active,
  .tab-list-link:focus
  {
    color: #000;
    outline: none;
    text-decoration: none;
    transition: opacity 0.15s ease-in;
  }
  .tab-list-link:focus .tab-svg,
  .tab-list-link:hover .tab-svg
  {
	transform: scale(1);
  }
  .tab-list-link[aria-selected="true"],
  .tab-list-link:active {

  }
  .tab-list-link[aria-selected="true"] .tab-list-check {
    display: none;
  }
  .tab-pane {

  }
  .tab-content p {
    display: block;
  }
/* } */

@media (max-width: 768px) {
  
  .tab-container h2 {
  text-align: center; 
  margin: 27px 0 30px;
}

  .tab-container .promoted-box h2 {
  margin: 40px 0 30px;
}
  
  
  .tab-list-item {
    width: 49%;
    margin-bottom: 10px;
  }
  
  .tab-list-link {
    height: 135px;
    padding: 10px 3px;
  }
  
  span.tab-name {
    font-size: 16px;
    line-height: normal;
    margin: auto 0;
  }
  
  span.tab-description {
    display: none;
  }

}
@media (min-width: 1024px) {
  .tab-section-blocks {
    -webkit-column-count: 2; 
    -moz-column-count: 2;
    column-count: 2;
  }
}


/********************
 INTERNAL HERO
********************/
.internal-hero {
  background-image: url(/hc/theming_assets/01HZKNNEBPMS15FRSPNTQ7XN8X);
  background-position: center;
  background-size: cover;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
.internal-hero-inner {
  padding: 50px 0;
  margin: auto;
  max-width: 610px;
}
.internal-hero-search {
  position: relative;
}
.internal-hero-nav {
  border-bottom: 1px solid rgba(237, 237, 237, 1);
  margin-bottom: 3rem;
}
.internal-hero-breadcrumbs {
  margin-bottom: 0;
  padding: 1rem 0
}
.internal-hero-breadcrumbs .breadcrumbs {
  margin-bottom: 0;
}



/********************
 CTA
********************/
.cta {
  background: url(/hc/theming_assets/01HZKNNB46WHT5MTP3AJZDV9JR);
  margin-bottom: -60px;
  padding: 30px 0;
  background-size: cover;
      background-position: right;
}
.cta-block {
  padding: 0 2.5%;
  display: flex;
    justify-content: flex-end;
    align-items: center;
}
.cta-heading {
  color: #276DB6;
  margin: 0;
  text-align: center;
  text-transform: none;
  padding-right: 45px;
  font-size: 18px;
}
.cta-button {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--helv);
  padding: 0px 25px;
  border-radius: 0px;
  font-size: 16px;
  position: relative;
  transition: background-color .15s ease-in-out, border .15s ease-in-out;
}

.cta-button:after {
    background-color: var(--orange);
		content: "";
    width: 28px;
    height: 27.5px;
    position: absolute;
    right: -15px;
    top: 5px;
    transform: rotate(45deg);
    z-index: 2;
    transition: background-color .15s ease-in-out;
  
}

.cta-button:active,
.cta-button:focus,
.cta-button:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}

.cta-button:hover::after,
.cta-button:focus::after,
.cta-button:active::after {
   background: var(--dark-blue);
  border-color: var(--dark-blue); 
}
@media (max-width: 768px) {
  .cta {
		background: url(/hc/theming_assets/01HZKNNCY36K7S4GJE5J7CXYTN);
    background-position: 40% 10%;
    padding: 50px 0;
    background-size: cover;
  }
 .cta-block {
    flex-direction: column;
   	align-items: flex-end;
  }
  .cta-heading {
    width: 60%;
    margin: 0;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 0;
    text-shadow: 0px 0px 10px rgba(149, 157, 165, 0.4);
  }
  .cta-button {
		margin-right: 15px;
	}
}


/********************
 FOOTER
********************/
.footer {
  background-color: rgba(0, 42, 106, 1);
  margin-top: 60px;
}
.footer-primary {
  padding: 0 2%;
  background-color: rgba(0, 42, 106, 1);
}
.footer-primary-inner { 
}

.logo-footer a {
  margin: 0 auto 0 0;
}

.return-to-top {
/*     max-width: 1140px; */
    margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.return-to-top svg {
  cursor: pointer;
  fill: var(--dark-blue);
  background-color: var(--mid-blue);
  transition: all .15s ease-in-out;
  width: auto;
  height: auto;
}

.return-to-top svg:hover {
fill: #fff;

}

.footer
.footer-list {
  margin-bottom: 15px;
  padding-right: 15px;
}

.footer-list ul{
  cursor: pointer; 
/*     width: 32%; */
}

.footer-support {
  display: flex;
}

.main-logo.logo-footer {
  justify-content: flex-start;
  flex-direction: row;
  max-width: 1140px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-primary .logo-footer a {
  margin-top: 60px;
}

@media (max-width: 1180px) {
  .footer-list ul{
    width: 100%;
}
.footer-support {
  flex-wrap: wrap;
}
  
  .footer-list-2 {
    width: 35%;
  }
}

.footer-list li{
  display: block;

}
.footer-list-item {
  padding: 0 0 0 0;
  font-size: 12px;
  line-height: 1.25rem;
}
.footer-list-heading {
  font-family: var(--helv-b);
  font-weight: bold;
  font-weight: 400;
  color: #FFFFFF; 
  margin-bottom: 10px;
  font-size: 20px;
  margin-top: 32px;
  
}

.footer-header-box {
/*   margin-right: 8px;  */
}
.footer-list-heading-link {
  color: rgba(255, 255, 255, 0.7); 
}
.footer-list-heading-link:active,
.footer-list-heading-link:focus,
.footer-list-heading-link:hover {
  color: rgba(129, 129, 129, 1);
}
.footer-list-link {
  font-family: var(--helv);
  color: #fff;
  display: block;
  font-size: 14px;
  transition: color .2s ease-in-out;
  padding: 6px 0;
}
.footer-list-link:active,
.footer-list-link:focus,
.footer-list-link:hover {
  color: var(--orange);
}

.footer-list-link.apple {
  transform: translateY(-20px);
}

.footer-list-item p {
  margin: 0;
  color: white;
  font-size: 16px;
}
.footer-brand {
  margin-top: 30px;
  text-align: center;
}

.footer-icon-frame {
  margin-bottom: 50px;
}
.footer-brand-link {
}
.footer-brand-logo {
  max-height: 35px;
}
.footer-brand-text {
  color: rgba(255, 255, 255, 0.7);
}
.footer-secondary {
  background-color: white;
  padding: 16px 40px 16px 40px;
}
.footer-bottom {
  font-size: 14px;
  color: #808080;
  text-align: center; 
}

.footer-secondary .footer-frame div {
  width: 40%;
   color: var(--dark-blue);
}

@media (max-width: 768px) {
  .footer-primary .logo-footer a {
  order: 1;
  margin-top: 20px;
}
  .main-logo.logo-footer {
    flex-direction: row-reverse; 
    
  }
  .footer-secondary .footer-frame div {
  		width: 100%;
    padding-left: 2%;
    border-top: 1px solid var(--dark-blue);
	}
  
  .footer-secondary {
    padding: 0;
    font-size: 12px;
    color: var(--dark-blue);
  }
  .footer-secondary .footer-frame {
    padding: 0;
  }
  
  .footer-primary {
/*     padding: 20px; */
  }
  
  
}

.footer-secondary .footer-frame div a{
  color: var(--dark-blue);
}


.footer-train {
      -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    border-top: 1px solid rgba(238, 238, 238, 0.2);
    padding-top: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: 80px;
    margin-bottom: -40px;
}
.footer-train-fast {
      -webkit-text-size-adjust: 100%;
    font-size: 12px; 
 		 font-family: var(--helv);
    -webkit-tap-highlight-color: transparent;
    display: block;
    color: white;
    margin-top: 14px;
  position: relative;
}

.footer-train-fast:before {
  content: "";
  height: 2px;
  background-color: rgb(174, 148, 109);
  position: absolute;
  left: 0px;
  width: 100%;
  top: 100%;
}

.footer-train-fast:after {
  content: "";
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 0px;
  width: 0%;
  top: 100%;
  transition: width .2s ease-in-out;
}

.footer-train-fast:hover::after {
  width: 100%;
  left: 0px;
}

.footer-train-image {
  margin-right: 30px;
}
.socials-icons svg {
      width: 1em;
    height: 1em;
}
.socials-icons {
  box-sizing: border-box;
      -webkit-text-size-adjust: 100%;
    font: 1.4rem 'proxima-nova', Arial,sans-serif;
    -webkit-tap-highlight-color: transparent;
    font-size: 28px;
    transition: transform 0.15s ease 0s;
    display: inline-block;
  	transition: fill .2s ease-in-out;
  	padding-right: 14px;
}

.all-social-icons {
  margin-top: 3px;
  cursor: pointer; 
  fill: #ffffff;
  transition: fill .2s ease-in-out;
}



/* SOCIALS ICONS */


 .footer-list-2 {
    	width: 40%;
			
  }
  
  .footer-list-2 h5 {
    margin-bottom: 0px;
  }

@media (max-width:1180px) {

  .header-icon {
      padding-left: 25px;
  }
}

.header-icon-link {
      -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: .01875em;
    -webkit-box-direction: normal;
    list-style-type: none;
    font-family: var(--helv);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    box-sizing: inherit;
    background-color: transparent;
    text-decoration: none;
    fill: #fff;
    display: block;
    line-height: 24px;
    margin: auto;
    padding-top: 0;
    width: 160px;
    color: #fff;
}
.footer-socials-icons:hover {
    color: var(--orange);

  }
@media (min-width: 760px) {
  
  .middle {
    text-align: center;
  }
  .footer-frame {
    margin: 0 auto; 
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
  }
  .footer-primary {
  }
  .footer-inner {
    max-width: 1160px;
    padding-left: 40px;
    display: flex;
    justify-content: flex-start;
  }
  .footer-primary-inner { 
  }
  .footer-list {
    width: 42%;
  }
  
  .footer-list:last-child {
    width: 52%;  
}
  

  .footer-list-item {
  }
  .footer-list-heading {
  }
  .footer-list-heading-link {
  }
  .footer-list-heading-link:active,
  .footer-list-heading-link:focus,
  .footer-list-heading-link:hover {
  }
  .footer-list-link {
  }
  .footer-list-link:active,
  .footer-list-link:focus,
  .footer-list-link:hover {

  }
}

.footer-list-heading.dont {
  font-family: var(--goth);;
  font-size: 36px;
  letter-spacing: 0px;
  position: relative;
  display: inline;
}


.follow h3 {
	color: #fff;
  display: inline;

}

.footer-list-2 p {
  margin-top: 0px;
  color: white;
/*   font-size: 18px; */
}

.subscribe-image {
    margin-top: 30px;
  width: 78px;
  height: 42px;
  transform: translateY(8px);
}

.subscribe-link svg {
  fill: #fff;
}

.social-link {
padding: 0 7.5px;
}

.social-link svg {
  fill: #fff;
}

.social-link:hover svg {
  fill: var(--light-blue);
}


#email-subscribe input {
  border: 2px solid white;
  padding: 15px;
  border-radius: 0px;
  background-color: white;
  font-size: 16px;
  margin-right: 15px;
  margin-bottom: 15px;
}

input#firstname  {
   margin-right: 5px; 
}

#email-subscribe input:first-child {
  width: 37%;
}

#email-subscribe input:nth-child(2) {
  width: 60%;
  margin-right: 0;
}

#email-subscribe input:focus {
  border: 2px solid var(--orange);
}

#email-subscribe input[type="submit"] {
  margin-top: 20px;
  padding: 12px 15px;
  position: static;
  background-color: var(--orange);
  height: auto;
  border-color: var(--orange);
  width: 150px;
  position: relative;
}


#email-subscribe input[type="submit"]:hover,
#email-subscribe input[type="submit"]:hover ~ #submit-ting,
#submit-ting:hover ~ #email-subscribe input[type="submit"]{
  background-color: var(--mid-blue);
  border-color: var(--mid-blue);
}

#submit-ting {
		display: inline-block;
    background-color: var(--orange);
    width: 33px;
    height: 33px;

    margin: -11.05px;
    transform: translateX(-20.5px) rotate(45deg);
    z-index: 0;
    transition: background-color .2s ease-in-out;
}

.request-container #submit-ting {
    width: 31.5px;
    height: 31.5px;
    transform: translateX(-4.900000000000027px) translateY(17.60000000000001px) rotate(45deg);
  transition: background-color .2s ease-in-out;
}

.request-container input[type="submit"]:hover ~ #submit-ting,
.request-container input[type="submit"]:active ~ #submit-ting,
.request-container input[type="submit"]:focus ~ #submit-ting {
  background-color: var(--dark-blue);
}

@media (min-width: 1024px) {
  .footer-brand {
  	width: 33.3333%;
  }
}

@media (min-width: 1160px) {
  .footer {
  }
  .footer-primary {
    display: block;
  }
  .footer-inner {
    padding: 0;
    width: 58%;
  }

}

@media (min-width: 1180px) {
  .footer-support {
    display: flex;
  }
}


@media (max-width: 1180px) {
    .footer-inner {
    	padding: 0;
    	width: 50%;
  }
}
.accordion-icon {
    display: none;
    
  }
@media (max-width: 760px) {
  
  .logo-footer .large-logo {
    width: 142px;
    height: 47px;
  }
  
  #email-subscribe input {
    width: 100%!important;
  }
  #email-subscribe input[type="submit"] {
    margin-top: 0;
    width: 50%!important;
  }
  .footer-support {
			display: flex;
  }
   .footer-list ul{
    width: 49%;
}
  .dont-orange {
    display: block;
  }
  
  .footer-list-heading.dont::before {
    left: 0;
    top: -27px;
  }
  
  .footer-list-heading.dont {
    margin-top: 30px;
  }
  
  .footer-icon-frame {
    display: none;
  }
   .footer-header-box {
     border-top: 0;
     display:flex;
     position: relative;
     flex-direction: column;
  }
  
  .footer-header-box:active {
    
  }
  
  .footer-list-heading {
    margin: 8px 0;
  }
  .footer-inner {
    width: 100%;
  }
  .footer-list {
    margin-bottom: 30px;
  }
  .footer-list-2 {
    width: 100%;
  }

  .footer-frame {
    padding-top: 20px;
/*     border-top: 2px solid white; */
  }
  .all-social-icons {
    text-align: center;
    padding-top: 40px;
  }
  .footer-train {
    margin-top: 10px;
  }
  
  .accordion-icon {
    display: flex;
    
  }
  
   .accordion-icon svg {
    transition: transform .2s ease-in;
    
  }
  .accordion-icon  {
    fill: #fff;
        -webkit-text-size-adjust: 100%;
    font: 1.4rem 'proxima-nova',Arial,sans-serif;
    color: rgb(255, 255, 255);
    -webkit-tap-highlight-color: transparent;
    font-size: 24px;
    x: 0px;
    y: 0px;
    width: 1em;
    height: 1em;
    display: flex;
        -webkit-text-size-adjust: 100%;
    font: 1.4rem 'proxima-nova',Arial,sans-serif;
    color: rgb(255, 255, 255);
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    font-size: 24px;
    right: 0px;
  }
  .top-nav {
    margin: 0 10%;
    width: 100%
  }
  .user-nav[aria-expanded="true"] .primary-nav-list {
 width: 90%;
    margin: 0 auto; 
}
  
}






/* Homepage & Request page notification*/

.container__announcements {
  display: none;
  max-height:100px;
  margin: 20px 0;
  text-align: middle; 
  height:auto;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px;

}
.container__text {
 	font-size: 16px;
  text-align: center;
  padding: 15px;
  margin: 0 auto;
  line-height: 22px;
  max-width: 1000px;
}

.red {
  color: #800000;
	background-color: #ff9999;
}

.green {
  color: #000;
	background-color: #b5ebc9;
}

.container__announcements a {
  color: #000;
}
.container__close {
  opacity: 0.3;
  position: absolute;
  top: 0px;
  right: 2px;
  padding: 1px 4px;
  cursor: pointer; 
}


.container__close:hover {
  opacity: 0.5;
}


p.sansserif {
	font-family: var(--helv);;
}
ul.sansserif {
	font-family:var(--helv);;
}
button.accordion {
    background-color: #ffffff;
      border: none;
  	border-bottom: 1px solid #DCDCDC;
    cursor: pointer;
    padding: 18px;
/*   	padding-left: 0px; */
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
/*     transition: 0.4s; */
    font-family: var(--helv);;
    font-weight:bold;
}

button.accordion.active {
  	border-bottom: 1px solid rgba(0,0,0,0);
}

button.accordion:hover {
  background-color: #F5F5F5;
}
button.accordion:after {
	content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
button.accordion.active:after {
	content: "\2212";
/*   color: #fff; */
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  
}
button.accordion.active + div.panel {
  border-bottom: 1px solid #DCDCDC;
}    


.search input[type="search"]::-webkit-search-cancel-button {

/*   -webkit-appearance: none;
  width: 14px;
  height: 14px;
  fill: rgba(22, 29, 101, 1);
  margin-left: 15px;
  background-image: url("/hc/theming_assets/01HZKNNDSNY9D577AJ0Y2SJSFR");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer; */
}

 .search input[type="search"]::-webkit-search-cancel-button {
    z-index: 1000;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-left: 20px;
/*   padding-right: 150px; */
  background-image: url("/hc/theming_assets/01HZKNNCREPM4BWGPGYAVCDYZB");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
  right: 100px;
  transform: translateX(-90px);
}

.hero-search .search input[type="search"]::-webkit-search-cancel-button {

  transform: translateX(-135px);
}


@media (max-width: 768px) {
  .hero-search .search input[type="search"]::-webkit-search-cancel-button {

  transform: translateX(-90px);
}
}
.contact-options {
  position: relative;
  padding: 2% 0;
	letter-spacing: 0.25px;
}

.contact-options h2 {
  font-weight: 300;
  font-size: 25px;
}


.contact-box {
  display: flex;
}
.contact-1 {
  width: 45%;
  padding: 5%;
  font-size: 13px;

}

.contact-2 {
  padding: 5%;
  width: 55%;
  background-color: #fef1f1;
    font-size: 13px;
}

@media (max-width: 768px) {
  .contact-box {
  flex-direction: column; 
}
  .contact-1,
  .contact-2 {
    width: 100%;
  }
  
}

.contact-1-inner.option {
  display: flex;
  margin-bottom: 40px;
}

.contact-1 a:hover svg {
	width: 55%;
  
}

.contact-1-inner-left {
	width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-1-inner-left svg {
  transition: width .2s ease-in-out;
  width: 50%;

}

.contact-1-inner-right {
  padding-left: 10px;
  color: #000;
    width: 70%;
}

.contact-1-inner-right span {
	text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 16px;
  background-color: rgba(22, 29, 101, 1);
  padding: 5px 20px;
  transition: all .2s ease-in-out; 
  min-width: 120px;
}

.contact-1 a:hover span {
  background-color: white;
  color: rgba(22, 29, 101, 1);
}

.contact-email-link {
  cursor: pointer;
}

.contact-2-inner {
  display: flex;
}
.contact-2-inner-left {
  padding-right: 10px;
  width: 50%;
}
.contact-2-inner-right .contact-2-button {
  margin-top: 30px;
/*   display: block; */
  padding: 10px 50px;
  text-transform: uppercase;
  color: #000;
  background-color: white;
  border: 1px solid #000;
  transition: all .2s ease-in-out;
}

.contact-2-inner-right a:hover {
  background-color: rgba(22, 29, 101, 1);
  color: white; 
  border: 1px solid white;
}

 .nesty-input:hover {
  color: #fff;
  background-color: rgba(22, 29, 101, 1);
}

 .passive-link,
 .passive-link {
  color: #000;
    background: none;
}


/* AUTO complete styling */
zd-autocomplete-multibrand {
  padding: 20px 20px 20px 70px;
}

zd-autocomplete-multibrand zd-autocomplete-title-multibrand {
  color: var(--dark-blue);
  font-family: var(--helv);;
}

zd-autocomplete
{
  border-radius:05px!important;
}

zd-autocomplete-multibrand:first-child {
  border-top-left-radius: 0px!important;
  border-top-right-radius: 0px!important;
}

zd-autocomplete-multibrand:last-child {
  border-bottom-left-radius: 0px!important;
  border-bottom-right-radius: 0px!important;
}

zd-autocomplete-multibrand[aria-selected=true] {

  background-color:white
}

zd-autocomplete-multibrand[aria-selected=true] zd-autocomplete-title-multibrand {
    color: var(--orange);
}

/* requests form DIVS */


.request_ticket_form_id {
  display: none;
}

.multiform-box {
  height: 100%;
  width: 100%;
}

.multiform-button {
  display: block;
  color: var(--dark-blue);
  background-color: #EDEDED;
  max-width: 378px;
  text-transform: uppercase;
  font-family: var(--helv);;
  padding: 20px;
  margin: 0 auto 30px;
  text-align: center;
  border-radius: 0px;
  position: relative;
}

@media (max-width: 768px) {
  .multiform-button {
   	font-size: 12px;
    height: 62px;
    width: 80vw;
    transform: translateX(-15px);
  }
}
.multiform-button:after {
  position: absolute; 
  content: "";
    top: 9px;
    right: -22px;
    width: 44px;
    height: 44px;
  transform: rotate(45deg);
  background-color: #EDEDED;
}

.multiform-button:hover,
.multiform-button:hover:after {
  color: white;
  background-color: var(--dark-blue);
  
}

.form-field label {
  color: var(--dark-blue);

}

.form-field .nesty-input,
.form-field input,
#request_description {
  border-radius: 0px!important;
  font-size: 16px;
  color: var(--dark-blue);
  font-family: var(--helv);
}

#request_description_hint,
#request_organization_id_hint {
/*   padding: 0 30px!important; */
}

#new_request > div.form-field.text.required.request_description
#request_description {
  font-size: 16px;
    min-height: 180px;
}

#request-attachments {
  border-radius: 0px!important;
  background-color: white;

}



.nesty-panel  {
  border-radius: 0px!important;
}



body .nesty-panel li {
  padding: 10px 30px!important;
  font-family: var(--helv);;
  font-size: 16px;
}

body .nesty-panel li:hover {
  background-color: var(--orange);
}

.nesty-expand:after,
.nesty-collapse:after {
  right: 15px!important;
  border-left-color: var(--dark-blue)!important;
  top: 44%!important;
  border-width: 7px!important;
}

/* cool */

.nesty-collapse:after {
    border-left-width: 0!important;
    border-right-color: #999;
}

div#upload-dropzone {
   border-radius: 0px!important;
  background: white;
  border-width: 3px;
  height: 60px;
	font-size: 16px;
}

div#upload-dropzone a {
  	font-size: 16px;
}

div#upload-dropzone span {
  margin-top: 5px;
    position: relative;
}
div#upload-dropzone span:before {
  content: " ";
  height: 22px;
  width: 28px;
  position: absolute;
  background-image: url(/hc/theming_assets/01HZKNNC86VNXHZN662XGXKV8E);
  left: -30px;
  background-size: cover;
}

li.nesty-collapse:hover {
  color: white;
}

.nesty-collapse:hover:after {
  border-right-color: white!important;
}

.nesty-panel {
  max-height: 300px!important;
  box-shadow: 0px 0px 15px #99bbd699!important;
  border: 1px solid rgba(22, 29, 101, 1)!important;
}
.form footer {
  margin-top: 0;
}
footer input[type="submit"] {
  position: static;
  border-radius: 0px;
  width: 182px;
  height: 45px;
}

footer input[type="submit"]:focus,
footer input[type="submit"]:active,
footer input[type="submit"]:pressed {
  background-color: var(--dark-blue);
}

#request_description {
  font-family: var(--helv);;
}

.app.android {
  margin-left: -10px;
}

@media (max-width: 768px) {
  .follow-1 {
    display: none;
  }
  
  .follow-2 {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .follow-2 {
    display: none;
  }
}