@charset "UTF-8";

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

@font-face{
  font-family:"copenhagen-icons";
  src:url(/hc/theming_assets/01J3DCCTYHX30YC08BERV1ZNZP) format("woff");
  font-weight:normal;font-style:normal
}
[dir] body {
  background-color: #FFFFFF;
  color: #333333;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  margin: 0 !important;
}

@media screen and (min-width: 1160px) {
  body > main {
    min-height: 75vh;
  }
}

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

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

h4 {
  font-size: 16px;
}

body a {
  color: #0384fb;
  text-decoration: none;
}

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

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

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

input:focus {
  border: 1px solid #00263e;
}

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

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

select:focus {
  border: 1px solid #00263e;
}

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

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

textarea:focus {
  border: 1px solid #00263e;
}

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

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

@media (min-width: 1400px) {
  .container--wide {
    max-width: 1260px;
  }

  .container--wide .article-sidebar {
    flex: 0 0 28%;
  }

  .container--wide .article {
    flex: 1 0 72%;
    max-width: 100%;
  }
}

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

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

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

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

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

/***** Buttons *****/

.lt-btn,
.button,
[role="button"] {
  background:transparent;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  color: #0384fb;
  border: #0384fb 1px solid;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {

  .button,
  [role="button"]{
    width: auto;
  }
}

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

.lt-btn:hover,
.lt-btn:focus,
.lt-btn:active,
.button:hover,
.button:active,
.button:focus,
.button[aria-selected="true"],
[role="button"]:hover,
[role="button"]:active,
[role="button"]:focus,
[role="button"][aria-selected="true"],
.button[aria-selected="true"]:hover,
.button[aria-selected="true"]:focus,
.button[aria-selected="true"]:active,
[role="button"][aria-selected="true"]:hover,
[role="button"][aria-selected="true"]:focus,
[role="button"][aria-selected="true"]:active{
  color: #0269c9;
  border: #0269c9 1px solid;
  text-decoration: none;
}

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

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

@media (min-width: 768px) {

  .button-large,
  input[type="submit"] {
    width: auto;
  }
}

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

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

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

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

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


.table {
  table-layout: auto;
}


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

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

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

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

.table td {
  display: block;
}

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

@media (min-width: 1024px) {

  .table td,
  .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {

  .table td,
  .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/***** Header *****/
.header {
  background: #00263e;
}

.header-contentContainer {
  /*max-width: 1160px;*/
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  align-items: center;
  display: flex;
  height: 71px;
  justify-content: space-between;
}

@media (max-width: 1160px) {
  .header-contentContainer {
    padding: 0 5%;
  }
}

@media (max-width: 1160px) and (min-width:768px) {
  .header-contentContainer[data-lang="Deutsch"] {
    padding: 0 20px;
  }

  .header-contentContainer[data-lang="Deutsch"] .logo img {
    max-height: 28px;
  }
}

.header .sign-in{
  text-transform:capitalize !important;
}
.header .sign-in:hover{
  border:0px none;
}


.logo img {
  height: 35px;
}

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

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

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

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

.user-nav[aria-expanded="true"] > a:hover {
  color: #0384fb;
}

.nav-wrapper a {
  border: 0;
  color: #fff;
  display: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px 0 0;
  width: auto;
}

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

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

.nav-wrapper a:hover,
.nav-wrapper a:focus,
.nav-wrapper a:active {
  background-color: transparent;
  color: #FFFFFF;
  text-decoration: underline;
}

.nav-wrapper a.login {
  display: inline-block;
  text-transform: capitalize;
}

.nav-wrapper a.login:hover {
  border: none;
}

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #FFFFFF;
}

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

[dir="rtl"] .nav-wrapper .icon-menu {
  margin-left: 10px;
  margin-right: 0;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

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

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

.user-info > [role="button"] {
  border: 0;
  color: #FFFFFF;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover {
  color: #FFFFFF;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #FFFFFF;
  padding-right: 15px;
}

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

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

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

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

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

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

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

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

/***** Footer *****/
.footer {
  margin-top: 60px;
  padding: 30px 0;
}

.footer a {
  color: #666;
}

.footer-inner {
  margin: 0px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  background: url(/hc/theming_assets/01J3DCCV7BZG58PJ42W4BQ512N) no-repeat;
  background-size: cover;
  background-position: 50%;
}

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

.language-selector {
  color: #333333;
  display: inline-block;
  font-weight: bold;
}


/* Header language */
.header .dropdown-toggle {
  color: #fff;
  font-weight: 500;
}

.header .language-selector {
  padding-right: 20px;
}

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

.breadcrumbs li {
  color: #666;
  display: inline;
  font-weight: normal;
  font-size: 16px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  padding: 0 5px;
  color: #6b7280;
  content: "\00a0";
  content: "› ";
}

.breadcrumbs li a:visited {
  color: #0384fb;
}

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

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

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

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

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

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

.search-full input[type="search"] {
  border: 1px solid #fff;
  height: 60px;
  /* CORBIN CHANGES: adjust search text size */
  font-size: 20px;
}

@media (min-width: 1025px) {
  .search-full input[type="search"] {
    max-width: 650px;
  }
}

@media (max-width: 1024px) {
  .search-full input[type="search"] {
    max-width: 600px;
  }
}

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

@media (max-width: 425px) {
  .search-full input[type="search"] {
    width: 350px;
  }
}

@media (max-width: 375px) {
  .search-full input[type="search"] {
    width: 300px;
    font-size: 18px;
  }
}

.search-full input[type="search"]::placeholder {
  font-weight: normal;
  color: rgb(164, 164, 164);
}

.search-full input[type="search"],
.search-full input[type="search"]:focus {
  border: none;
}

.search-result-link {
  font-size: 18px;
}

/***** Hero component *****/

.hero {
  background-image: url('/hc/theming_assets/01J3DCCXC25ZDNANJ3S3VKSGNW');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.hero-inner {
  position: relative;
  max-width: 1130px;
  margin: 0 auto;
  text-align: center;
}

.hero-inner h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 500;
}

@media (min-width: 992px) {
  .hero-inner h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    position: relative;
    transform: translateY(-50%);
    max-width: 1160px;
    padding: 0 40px 0 20px;
    margin-right: 0 auto;
    text-align: left;
  }

  .hero-inner h1 {
    color: #FFFFFF;
    text-align: left;
    padding-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
  }
}

@media (max-width: 425px) {
  .hero-inner {
    position: relative;
    padding: 0 20px 0 20px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-inner h1 {
    color: #FFFFFF;
    font-size: 28px;
    text-align: center;
    padding-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
  }
}

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

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

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

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

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

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

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

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

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0px;
  min-height: 50px;
  padding-bottom: 0;
  font-size: 16px;
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    max-width: 400px;
    align-items: baseline;
    flex-direction: column;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .sub-nav input[type="search"] {
    max-width: 400px;
    align-items: baseline;
    flex-direction: column;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .sub-nav input[type="search"] {
    max-width: 300px;
    align-items: baseline;
    flex-direction: column;
    margin-bottom: 10px;
  }
}

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

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.categories h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.categories a h1:hover {
  text-decoration: underline;
}

.categories-title,
.categories-title:hover {
  color: #00263e;
  font-weight: 500;
}

.categories-item {
  margin-top: 10px;
  margin-right: 64px;
  max-width: 300px;
}

.categories__title {
  color: #fff;
}

.category-item {
  display: flex;
  justify-content: center;
  flex: 1;
  flex-basis: 18%;
  border-radius: 6px;
  padding: 16px;
  margin-right: 16px;
  margin-bottom: 16px;
  background: #fff;
  font-weight: 600;
}

.category-item__link {
  color: #00263e;
}

.category-item__link:hover,
.category-item__link:focus {
  color: #0384fb;
  text-decoration: none;
}

@media (max-width: 768px) {
  .blocks-list {
    flex-direction: column;
  }

  .categories-item {
    max-width: none;
    margin-right: 0;
  }
}

.categories-article {
  display: block;
  margin-bottom: 8px;
  color: #00263e;
}

.categories-article:hover {
  color: #00263e;
}

.blocks-list {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
}

.blocks-item {
  border: 1px solid #00263e;
  border-radius: 4px;
  box-sizing: border-box;
  color: #00263e;
  display: flex;
  flex: 1 0 340px;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
}

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

.blocks-item:hover,
.blocks-item:focus,
.blocks-item:active {
  background-color: #00263e;
}

.blocks-item:hover *,
.blocks-item:focus *,
.blocks-item:active * {
  color: #FFFFFF;
  text-decoration: none;
}

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

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #333333;
}

.blocks-item-link {
  color: #00263e;
  padding: 20px 30px;
}

.blocks-item-link:hover,
.blocks-item-link:focus,
.blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
}

.blocks-item-description {
  font-weight: 300;
  margin: 0;
}

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

/***** Homepage *****/
.hero.hero-home {
  margin-bottom: 0;
}

.section {
  margin-bottom: 20px;
}

.section h2 {
  margin-bottom: 20px;
}


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

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

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

/* Three columns on desktop */
}

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

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

.promoted-articles-item a {
  border-bottom: 1px solid #ddd;
  color: rgba(0, 94, 184, 1);
  display: block;
  padding: 20px 0;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {

  .recent-activity-item-parent,
  .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

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

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

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }

  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

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

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

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

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

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

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

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

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

.category-content {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-content {
  flex: 1;
}

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

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

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

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

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

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

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

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

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


/* CORBIN CHANGES: Restyle article author info  */
.article-title {
  margin-bottom: 16px;
}

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

.article-author .article-avatar img {
  width: 32px;
  height: 32px;
}

.article-author .article-meta {
  font-size: 13px;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

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

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

/*  CORBIN CHANGES: Hiding the subscribe button  */
/* @jpfeltracco - stop hiding this button at Gladys' request
/*
.article [role="button"] {
  display: none;
  flex-shrink: 0;
  width: 100%;
}
*/
/*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-sidebar {
  /*  CORBIN CHANGES: hide section articles accordion on mobile */
  display: none;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    margin-top: 20px;
    /*  CORBIN CHANGES: hide section articles accordion on mobile */
    display: block;
    border: 0;
    flex: 0 0 26%;
    height: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-unsubscribe {
  background-color: #00263e;
  color: #FFFFFF;
  text-decoration: none;
}

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

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

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

.sidenav-item.current-article,
.sidenav-item:hover {
  background-color: #00263e;
  color: #FFF;
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3,
.section-articles .sidenav-title {
  font-size: 22px;
  margin: 20px 0 !important;
  font-weight: 500 !important;
  border-bottom: none !important;
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.share a:hover::before {
  color: #00263e;
}

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

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

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

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

/***** Comments *****/
/* Styles comments inside articles, posts and requests */

/* CORBIN CHANGES: Hide comments container  */
.comments {
  display: none;
}

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

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

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

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

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

.comment-callout a {
  color: #00263e;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.comment-container {
  width: 100%;
}

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

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

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

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

  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

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

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

.comment-ccs {
  display: none;
}

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

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

.comment-attachments a {
  color: #00263e;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.vote a {
  outline: none;
}

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

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

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

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

.vote-up::before,
.vote-down::before {
  color: #666;
  font-size: 24px;
}

.vote-voted::before {
  color: #00263e;
}

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

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

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

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

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

/***** Community *****/
.community-hero {
  background: #00263e;
  margin-bottom: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.community-follow [role="button"]::after {
  border-left: 1px solid #00263e;
  content: attr(data-follower-count);
  color: #00263e;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

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

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

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

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

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

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

.striped-list-title {
  color: #0384fb;
  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: #024f96;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.post-content {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

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

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

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

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

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

.post-body 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: #024f96;
}

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

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

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

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

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

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

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

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

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

  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }

  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }

  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

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

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

  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1024px) {

  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

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

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

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

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

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

@media (min-width: 768px) {

  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }

  [dir="rtl"] .requests-table-toolbar .organization-subscribe,
  [dir="rtl"] .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: #00263e;
  color: #FFFFFF;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.subscriptions-unsubscribe a:hover {
  background-color: #000;
  text-decoration: none;
}

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

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

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

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

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

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

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

.no-activities {
  color: #666;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 #00263e;
}

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

.request-title {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination * {
  display: inline-block;
}

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

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

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

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

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

.pagination a,
.pagination span {
  font-size: 15px;
  color: #666;
  /*padding: 10px 12px;*/
  padding: 5px 4px;
  cursor: pointer;
}

@media (min-width: 768px) {

  .pagination a,.pagination span {
    font-size: 13px;
    /*padding: 5px 12px;*/
    padding: 5px 4px !important;
  }
}

.pagination-current {
  background-color: #00263e;
}

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

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

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

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

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

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

.meta-group * {
  display: inline;
}

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

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

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

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

.vote-up:hover,
.vote-down:hover {
  color: #00263e;
}

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

.vote-voted {
  color: #00263e;
}

.vote-voted:hover {
  color: #000;
}

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

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


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

.icon-star::before {
  content: none;
}

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

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

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

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

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

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

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

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

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

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

.icon-search::before {
  content: "\1F50D";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }

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

  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }

  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }

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

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

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

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }

  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }

  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

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

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

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

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

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

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

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

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

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

.profile-section {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }

  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

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

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

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

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

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

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }

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

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }

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

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

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

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }

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

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

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

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

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

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

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }

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

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

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

@media (min-width: 768px) {
  .profile-activity::before {
    left: -14px;
  }

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

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

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

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

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

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

.search-results-column {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

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

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
}

/* CORBIN CHANGES: restyling autocomplete dropdown */
zd-autocomplete-option {
  font-size: 16px;
}

zd-autocomplete-breadcrumbs {
  font-size: 16px;
}

@media (min-width: 1024px) {
  a.submit-request {
    padding: 0;
    margin-right: 20px;
    border: 1px solid white;
    padding: 8px 12px;
    border-radius: 4px;
    color: white;
    transition-duration: 300ms;
  }

  a.submit-request:hover {
    background: white;
    color: #00263e;
    text-decoration: none;
  }
}

/* ====================================================
   Kevin's Additions
   ==================================================== */
h4.custom {
  margin: 20px 0;
  text-decoration: underline;
}

.contact-us {
  width: 100%;
  clear: both;
  padding: 30px 30px 40px;
  text-align: center;
}

.contact-us h2 {
  font-size: 36px;
}

.btn-chat {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  background: #00263e;
  color: #fff !important;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-chat:hover {
  text-decoration: none;
}


.btn-contact {
  height: 40px;
  line-height: 13px;
  margin: auto;
  display: inline-block;
  background-color: #fff;
  color: #00263e;
  text-decoration: none;
  border: 2px solid #00263e;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: middle;
  width: auto;
  padding: auto;
}

.btn-contact:hover {
  background-color: #00263e;
  color: #fff;
  text-decoration: none;
  line-height: 15px;
}

.btn-phone {
  height: 40px;
  line-height: 13px;
  margin: auto;
  display: inline-block;
  background-color: #fff;
  color: #00263e;
  text-decoration: none;
  border: 2px solid #00263e;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  vertical-align: middle;
  width: auto;
  padding: auto;
  margin-top: 8px;
}

.btn-phone:hover {
  background-color: #00263e;
  color: #fff;
  text-decoration: none;
  line-height: 13px;
}

.popover {
  min-width: 200px;
  min-height: 120px;
  border: 2px solid #00263e;
  display: block;
}

.popover.right {
  margin-top: 25px;
}

.popover.right > .arrow {
  border-right-color: #00263e;
}

h3.popover-title {
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #00263e;
  border-bottom: 2px solid #fff;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  width: 100%;
  height: 100% font-size: 14px;
  color: #00263e;
  text-align: left;
  display: block;
}

p.lead {
  font-size: 18px;
  font-weight: bold;
  color: #00263e;
  line-height: 30px;
  text-align: center;
}

.align-center {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 0;
}

@media (max-width: 2560px) {
  h2.align-left {
    text-align: left;
    color: #00263e;
    padding: 10px 0 30px 0;
    margin: 0 0;
  }
}

@media (max-width: 425px) {
  h2.align-left {
    text-align: center;
    color: #00263e;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .col-md-12 {
    flex-direction: row;
  }
}

/* Flex box that contains a list of owlie-fill */
.owlie-container {
  display: flex;
}

.owlie-fill {
  width: 100%;
  height: 310px;
  flex-grow: 1;
  margin-right: 15px;
  text-align: center;
  background: #F7F7F9;
  border-radius: 6px;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: ease-in-out;
}

.owlie-fill:hover {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.10);
  background: #fff;
  cursor: pointer;
}

.owlie-feature {
  max-width: 360px;
  margin: auto;
  margin-top: 30px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.owlie-icon {
  width: 115px;
  height: 110px;
  background-image: url('/hc/theming_assets/01J3DCCR15TQ0H653VSDDRH7PQ');
  background-size: cover;
  background-repeat: none;
  display: inline-block;
  margin-bottom: 0px;
}

.industrial-fill {
  width: 100%;
  height: 310px;
  text-align: center;
  background: #F7F7F9;
  border-radius: 6px;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: ease-in-out;
}

/* .industrial-fill:hover {
  box-shadow: 0 0 8px 0 rgba(0,0,0,0.10);
  background: #fff;
  cursor: pointer;
  } */

.industrial-feature {
  max-width: 310px;
  margin: auto;
  margin-top: 30px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.industrial-icon {
  width: 115px;
  height: 110px;
  background-image: url('/hc/theming_assets/01J3DCCRTKWSV4CDM6Q45M1D7E');
  background-size: cover;
  background-repeat: none;
  display: inline-block;
  margin-bottom: 0px;
}

.truck-icon {
  width: 115px;
  height: 110px;
  background-image: url('/hc/theming_assets/01J3DCCPKTZYHTHSZ4DNC81EN5');
  background-size: cover;
  background-repeat: none;
  display: inline-block;
  margin-bottom: 0px;
}

.workforce-icon {
  width: 115px;
  height: 110px;
  background-image: url('/hc/theming_assets/01J3DCCQAC9Z2V698AFJT8ZGZP');
  background-size: cover;
  background-repeat: none;
  display: inline-block;
  margin-bottom: 0px;
}

#btnFleet .truck-icon {
  background-position: 0 0;
}

/* Remove hover effect since we don't have good icons for industrial (we need source control....) */
/* #btnFleet:hover .truck-icon {
  background-position: -100px -80;
  background-image: url('/hc/theming_assets/01J3DCCQ31DB730KKVAAMSMBSN');
  } */

/* #btnFleet .industrial-icon {
  background-position: 0 0;
}

#btnIndustrial:hover .industrial-icon {
  background-position: 0 0;
  background-image: url('/hc/theming_assets/01J3DCCSDGKS0E1JMJVTBGGPGK');
  } */

.btn-primary {
  background-color: #00263e !important;
  border: none !important;
  text-transform: uppercase;
  line-height: 40px;
  display: block;
  height: 40px;
  font-weight: 1000;
  padding: 10px 12px !important;
  font-weight: bold !important;
}

/* ====================================================
   Accordion
   ==================================================== */

h4.home-section {
  word-wrap: break-word;
  font-size: 16px;
}

.panel-heading.collapsed h4:after {
  /* symbol for "opening" panels */
  content: "\f078";
}

.panel-heading h4:after {
  font-family: 'FontAwesome';
  content: "\f077";
  float: right;
  color: inherit;
  margin-top: -35px;
  color: #00263e;

}

.panel-title > a,
.panel-title {
  color: #00263e;
  text-decoration: none;
  font-size: 12px !important;
  cursor: pointer;
}

.panel-title h4 {
  font-size: 18px !important;
}

a.panel-heading {
  display: block;
}

.panel-red {
  border: 1px solid #00263e !important;
}

.panel-red .panel-title a {
  color: #00263e;
  font-weight: bold;
  font-size: 14px;
}

.panel-group .panel {
  margin-bottom: 2px !important;
}

.icon-star::before {
  color: #388800;
  text-decoration: none;
}

i[class^="icon-"]:before {
  display: inline-block;
  text-decoration: none;
}

.panel .see-all-articles {
  background-color: #fff;
  color: #00263e;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #00263e;
}

.panel .see-all-articles:hover {
  background-color: #00263e;
  color: #fff;
  text-decoration: none;
}

.panel-body {
  display: flex;
}

.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
  flex-wrap: wrap;
  align-content: flex-start;
}

#accordion .promoted-articles-item a {
  border-bottom: none;
}

#accordion .section {
  width: 30%;
  margin-right: 3%;
}

#accordion {
  display: none;
}

.panel-body ul {
  margin-right: 20px;
}

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


/* ====================================================
   Carousel
   ==================================================== */

.carousel-showsixmoveone .carousel-control {
  width: 4%;
  background-image: none;
}

.carousel-showsixmoveone .carousel-control.left {
  margin-left: 15px;
}

.carousel-showsixmoveone .carousel-control.right {
  margin-right: 15px;
}

.carousel-showsixmoveone .cloneditem-1,
.carousel-showsixmoveone .cloneditem-2,
.carousel-showsixmoveone .cloneditem-3,
.carousel-showsixmoveone .cloneditem-4,
.carousel-showsixmoveone .cloneditem-5 {
  display: none;
}

@media all and (min-width: 768px) {

  .carousel-showsixmoveone .carousel-inner > .active.left,
  .carousel-showsixmoveone .carousel-inner > .prev {
    left: -33.333%;
  }

  .carousel-showsixmoveone .carousel-inner > .active.right,
  .carousel-showsixmoveone .carousel-inner > .next {
    left: 33.333%;
  }

  .carousel-showsixmoveone .carousel-inner > .left,
  .carousel-showsixmoveone .carousel-inner > .prev.right,
  .carousel-showsixmoveone .carousel-inner > .active {
    left: 0;
  }

  .carousel-showsixmoveone .carousel-inner .cloneditem-1,
  .carousel-showsixmoveone .carousel-inner .cloneditem-2 {
    display: block;
  }
}

@media all and (min-width: 768px) and (transform-3d),
all and (min-width: 768px) and (-webkit-transform-3d) and (-ms-transform3d) {

  .carousel-showsixmoveone .carousel-inner > .item.active.right,
  .carousel-showsixmoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(33.333%, 0, 0);
    -ms-transform: translate3d(33.333%, 0, 0);
    transform: translate3d(33.333%, 0, 0);
    left: 0;
  }

  .carousel-showsixmoveone .carousel-inner > .item.active.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-33.333%, 0, 0);
    -ms-transform: translate3d(-33.333%, 0, 0);
    transform: translate3d(-33.333%, 0, 0);
    left: 0;
  }

  .carousel-showsixmoveone .carousel-inner > .item.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev.right,
  .carousel-showsixmoveone .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

@media all and (min-width: 992px) {

  .carousel-showsixmoveone .carousel-inner > .active.left,
  .carousel-showsixmoveone .carousel-inner > .prev {
    left: -16.666%;
  }

  .carousel-showsixmoveone .carousel-inner > .active.right,
  .carousel-showsixmoveone .carousel-inner > .next {
    left: 16.666%;
  }

  .carousel-showsixmoveone .carousel-inner > .left,
  .carousel-showsixmoveone .carousel-inner > .prev.right,
  .carousel-showsixmoveone .carousel-inner > .active {
    left: 0;
  }

  .carousel-showsixmoveone .carousel-inner .cloneditem-3,
  .carousel-showsixmoveone .carousel-inner .cloneditem-4,
  .carousel-showsixmoveone .carousel-inner .cloneditem-5 {
    display: block;
  }
}

@media all and (min-width: 992px) and (transform-3d),
all and (min-width: 992px) and (-webkit-transform-3d) {

  .carousel-showsixmoveone .carousel-inner > .item.active.right,
  .carousel-showsixmoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(16.666%, 0, 0);
    -ms-transform: translate3d(16.666%, 0, 0);
    transform: translate3d(16.666%, 0, 0);
    left: 0;
  }

  .carousel-showsixmoveone .carousel-inner > .item.active.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-16.666%, 0, 0);
    -ms-transform: translate3d(-16.666%, 0, 0);
    transform: translate3d(-16.666%, 0, 0);
    left: 0;
  }

  .carousel-showsixmoveone .carousel-inner > .item.left,
  .carousel-showsixmoveone .carousel-inner > .item.prev.right,
  .carousel-showsixmoveone .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

.row-carousel {
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.img-responsive:hover {
  cursor: pointer;
}

@media (max-width: 425px) {
  .img-responsive {
    max-height: 200px;
  }
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  background-color: #f7f7f9;
  background-position: center;
  border: 2px solid #eee;
}

/* ====================================================
   Modal
   ==================================================== */

.modal-content {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .333);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  box-sizing: border-box;
}

.modal-title {
  color: #00263e;
}

.modal-header {
  background: #f7f7f9;
}

.modal-footer {
  background: #f7f7f9;
}

iframe {
  display: block;
  width: 100%;
}

/* ====================================================
   Support Card
   ==================================================== */

.contact.contact-page-signed-out .support-contact-cards .channel.email {
  max-width: 50%;
}

h5.support-channel-title {
  font-size: 16px;
  font-weight: 400;
  color: #00263e;
  margin: 15px 0 5px 0;
}

hr.custom {
  border: 1px solid #eee;
}

.icon--size-small {
  min-width: 50px;
  min-height: 50px;
}

.icon--size-medium {
  min-width: 60px;
  min-height: 60px;
}

.stage {
  margin-right: auto;
  margin-left: 0;
  position: relative;
  min-height: 400px
}

.stage > h1 {
  margin-bottom: 30px
}

.stage > p {
  margin-bottom: 1.66667em
}

.cta {
  display: inline-block;
  margin-top: 1em;
  background-color: #fff;
  border-radius: 7px;
  text-decoration: none;
  text-align: center;
}

.cta-2 {
  display: inline-block;
  margin-top: 1em;
  background-color: #fff;
  border-radius: 7px;
  text-decoration: none;
  text-align: center;
}

.contact .support-contact-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2em;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.contact .support-contact-cards .channel {
  margin-bottom: 2em;
  position: relative;
  width: 100%;
  border-radius: 4px;
  margin-top: 0px;
}

@media screen and (min-width:527px) {
  .contact .support-contact-cards .channel h5.support-channel-title {
    height: 68px;
  }
}
.operation-hours-text{
  font-size: 14px;
  font-style: italic;
}
/* Hide whatsapp in non-participating languages. */
.channel-whatsapp {
  display: none;
}

main[data-lang="English (US)"] .channel-whatsapp,
main[data-lang="Español"] .channel-whatsapp {
  display: block;
}

.contact .support-contact-cards .channel.email h5.support-channel-title {
  height: auto;
}

.contact .support-contact-cards .channel .cta-2 > a {
  margin-top: 0px;
}

#new_request {
  padding-top: 20px;
}

.contact .support-contact-cards .channel.primary {
  border: 2px solid #00263e;
}

.contact .support-contact-cards .channel .header {
  color: #fff;
  background-color: #00263e;
  font-weight: 700;
  font-size: 18px;
  padding: 1em
}

.contact .support-contact-cards .channel > div {
  padding: 1em 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 250px;
}

.contact .support-contact-cards .channel.channel-phone .support-channel-title,
.contact .support-contact-cards .channel.channel-chat .support-channel-title,
.contact .support-contact-cards .channel.channel-whatsapp .support-channel-title {
  min-height: 53px;
}

.contact .support-contact-cards .channel > div img {
  width: 50px;
  height: 50px;
}

.contact .support-contact-cards .channel > div h4 {
  margin-top: 20px;
}

.channel {
  margin-top: 60px;
}

.request_ticket_form_id {
  display: none;
}

.contact .support-contact-cards .channel.email {
  max-width: 300px;
  width: 100%;
}

.contact .support-contact-cards .channel.email .form {
  max-width: 300px;
  width: 100%;
}


@media screen and (max-width: 67.4375em) {
  body .contact .support-contact-cards {
    flex-wrap: wrap;
  }

  .contact .support-contact-cards .channel {
    max-width: 50%;
  }

  .contact .support-contact-cards .channel.email {
    max-width: 100%;
  }

  .contact .support-contact-cards .channel.email .form {
    max-width: 100%;
  }

  .channel {
    margin-top: 0;
  }
}

@media screen and (max-width: 46.8125em) {
  .channel {
    margin-top: 0;
  }
}

@media screen and (min-width: 46.875em) {
  .contact .support-contact-cards .channel {
    width: 48%
  }
}

@media screen and (max-width: 32.875em) {
  .contact .support-contact-cards .channel {
    width: 100%;
    max-width: 100%;
  }
}

.contact .support-contact-cards {
  display: flex;
  flex-wrap: nowrap;
}

.contact .support-contact-cards .channel {
  width: 100%;
}

.contact .channel-trans-appear {
  opacity: 0;
  -webkit-transition: all .4s;
  transition: all .4s
}

.contact .channel-trans-appear-active {
  opacity: 1
}

.contact .channel-trans-enter {
  opacity: 0;
  z-index: 1
}

.contact .channel-trans-enter.channel-trans-enter-active {
  opacity: 1;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in
}

.contact .channel-trans-exit {
  display: none
}

@media screen and (min-width: 67.5em) {
  .page-width {
    width: 990px
  }
}

@media screen and (min-width: 46.875em) and (max-width: 67.4375em) {
  .page-width {
    width: 750px
  }
}



/* ====================================================
   Common Help Articles Cards
   ==================================================== */

.content-section {
  margin: 64px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card {
  display: flex;
  /*  Center the content vertically and horizontally  */
  justify-content: center;
  align-items: center;

  /* Tell the child how many "shares" it needs to grow */
  flex-basis: 15%;

  border: 1px solid #E4E7EB;
  border-top: 4px solid #1DCAD3;
  border-radius: 3px;

  min-height: 120px;
  padding: 32px;
  margin-right: 16px;
  margin-bottom: 32px;
}

.card a {
  color: #00263e;
  font-weight: bold;
  text-align: center;
}

.cards-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 30px;
}

.card-categories {
  display: flex;
  /*  Center the content vertically and horizontally  */
  justify-content: center;
  align-items: center;

  /* Tell the child how many "shares" it needs to grow */
  flex-basis: 15%;

  border: 1px solid #E4E7EB;
  border-top: 4px solid #7badd3;
  border-radius: 3px;

  min-height: 160px;
  padding: 32px;
  margin-right: 16px;
  margin-bottom: 32px;
}

.card-categories a {
  color: #00263e;
  font-weight: bold;
  text-align: center;
}

.card-categories:hover {
  box-shadow: 2px 2px 4px 0 rgba(46, 61, 73, .1);
}

.card-categories:nth-child(2n) {
  border-top: 4px solid #7badd3;
}

.card-categories:nth-child(3n) {
  border-top: 4px solid #7badd3;
}

.card-categories:nth-child(4n) {
  border-top: 4px solid #7badd3;
}

.card:hover {
  box-shadow: 2px 2px 4px 0 rgba(46, 61, 73, .1);
}

.card:nth-child(2n) {
  border-top: 4px solid #1DCAD3;
}

.card:nth-child(3n) {
  border-top: 4px solid #1DCAD3;
}

.card:nth-child(4n) {
  border-top: 4px solid #1DCAD3;
}

/* Maybe at certain breakpoints, we want to change the proportion... */

@media (max-width: 2560px) {
  .card {
    flex: 1;
    flex-basis: 18%;
  }
}

@media (max-width: 768px) {
  .card {
    flex-basis: 20%;
  }
}

@media (max-width: 2560px) {
  .card-categories {
    flex: 1;
    flex-basis: 0%;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .card-categories {
    flex-basis: 40%;
  }
}

@media (max-width: 767px) {
  .col-sm-6 {
    padding-bottom: 10px;
  }
}

#videos {
  display: none;
}

/*Notification Banner CSS - ask Lady Glagla if any help needed*/
/* Common, default styles for the notification box */

/* change the background color by editing "background"  */
/* change the text color by editing "color"  */
.ns-box {
  background: rgba(60, 141, 13, 1);
  padding: 10px 20px 20px 20px;
  line-height: 1.4;
  z-index: 1000;
  pointer-events: none;
  color: rgba(250, 251, 255, 0.95);
  font-size: 85%;
  border-bottom: 1px solid #DDD;
}

.ns-box.ns-show {
  pointer-events: auto;
}

.ns-box a {
  color: inherit;
  opacity: 0.7;
  font-weight: 700;
}

.ns-box a:hover,
.ns-box a:focus {
  opacity: 1;
}

.ns-box p {
  margin: 0;
}

.ns-box.ns-show,
.ns-box.ns-visible {
  pointer-events: auto;
}

.ns-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 4px;
  top: 4px;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ns-close:hover,
.ns-close:focus {
  outline: none;
}

.ns-close::before,
.ns-close::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #6e6e6e;
}

.ns-close:hover::before,
.ns-close:hover::after {
  background: #fff;
}

.ns-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.ns-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ns-box-inner i {
  color: #fff;
  font-size: 3.8em;
}

.megaphone:before {
  content: '\1F4E3';
  font-family: "entypo";
  font-size: 2.2em;
}

/* Top bar notifications */
.ns-box.ns-bar {
  top: 0;
  left: 0;
  width: 100%;
}

.ns-bar .ns-close {
  background: transparent;
  margin-top: 15px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ns-bar .ns-close::before,
.ns-bar .ns-close::after {
  background: #b7b5b3;
}

[class^="ns-effect-"].ns-bar.ns-hide,
[class*=" ns-effect-"].ns-bar.ns-hide {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
/*ns box updated css */
.ns-box {
  position: relative;
}

/* .ns-close styles */
.ns-close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 15px; /* Adjust spacing as needed */
  top: 15px; /* Adjust spacing as needed */
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  background: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* .ns-close hover and focus styles */
.ns-close:hover,
.ns-close:focus {
  outline: none;
}

/* .ns-close cross design */
.ns-close::before,
.ns-close::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 60%;
  top: 50%;
  left: 50%;
  background: #6e6e6e;
}

.ns-close:hover::before,
.ns-close:hover::after {
  background: #fff;
}

.ns-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.ns-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.ns-box {
  cursor: pointer; /* Change cursor to pointer when hovering over the banner */
}



/* Slide on top */
.ns-effect-slidetop {
  box-shadow: inset 5.4em 0 rgba(0, 0, 0, 0.1);
}

.ns-effect-slidetop .icon {
  position: absolute;
  display: block;
  font-size: 109%;
  top: 50%;
  left: 1em;
  -webkit-transform: translate3d(0, -20%, 0);
  transform: translate3d(0, -20%, 0);
}

.ns-effect-slidetop p {
  padding: 0 3.2em;
  font-size: 1.2em;
  display: inline-block;
}

.ns-effect-slidetop .ns-close::before,
.ns-effect-slidetop .ns-close::after {
  width: 2px;
  background: #fff;
}

.ns-effect-slidetop .ns-close:hover::before,
.ns-effect-slidetop .ns-close:hover::after {
  background: #fff;
}

.ns-effect-slidetop.ns-show .icon,
.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animScaleUp;
  animation-name: animScaleUp;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.ns-effect-slidetop.ns-show p {
  -webkit-animation-name: animFade;
  animation-name: animFade;
}

@-webkit-keyframes animScaleUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
  }

  100% {
    opacity 1;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
  }
}

@keyframes animScaleUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
    transform: translate3d(0, -50%, 0) scale3d(0, 0, 1);
  }

  100% {
    opacity 1;
    -webkit-transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
    transform: translate3d(0, -50%, 0) scale3d(1, 1, 1);
  }
}

.ns-effect-slidetop.ns-show,
.ns-effect-slidetop.ns-hide {
  -webkit-animation-name: animSlideTop;
  animation-name: animSlideTop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

@-webkit-keyframes animSlideTop {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes animSlideTop {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.sidenav-extra-level {
  padding: 20px;
  background: #f0f6fe;
}

.sidenav__category-name,
.sidenav-extra-level__title {
  padding-top: 0 !important;
  margin-bottom: 0;
  font-size: 16px;
}

.sidenav-extra-level__title {
  display: block;
}

.sidenav__category-name,
.sidenav__section-name {
  display: inline-block;
  font-weight: 600;
  color: #333333;
}

.sidenav-extra-level__item {
  padding-bottom: calc(16px * 1.5 / 2.5);
  margin-bottom: calc(16px * 1.5 / 2);
}

.sidenav .sidenav__article-name:before {
  display: none;
}

.sidenav .sidenav__article-name {
  font-size: 14px;
}

.section-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.section-articles li {
  margin-bottom: 15px;
}

.section-articles .current-article {
  font-weight: 700;
}

.article-sidebar {
  display: block;
  border: none;
}

.btn.sidenav-btn,
.btn.sidenav-btn:hover {
  background: rgba(0, 38, 62, 1);
  color: #fff;
}

.sidenav a {
  color: #333;
}

.sidenav__article.is-active .sidenav__article-name {
  color: #0384FB;
}


.sidenav .sidenav__category.is-active > a,
.sidenav .sidenav__category.is-active > span,
.sidenav .sidenav__section.is-active > a,
.sidenav .sidenav__section.is-active > span,
.sidenav .sidenav__category-name,
.sidenav .sidenav__section-name {
  font-weight: 400;
  font-size: 14px;
}

.sidenav__category .sidenav__category-name:before,
.sidenav-extra-level__title:before {
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  margin-top: -2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  content: '';
}


.sidenav-extra-level__title:before {
  margin-right: 5px;
}

.sidenav__category.is-active .sidenav__category-name:before,
.sidenav-extra-level__item.is-active .sidenav-extra-level__title:before {
  border-top: 5px solid transparent;
  border-right: none;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
}

.sidenav__section .sidenav__section-name:before {
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  margin-top: -2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  content: '';
}

.sidenav__section.is-active > .sidenav__section-name:before {
  border-top: 5px solid transparent;
  border-right: none;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
}

.sidenav__category-name,
.sidenav__section-name {
  position: relative;
  padding-left: 18px !important;
}

.sidenav-extra-level__title {
  display: block;
}

.sidenav__category-name:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px !important;
}

.sidenav__section-name:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px !important;
}

.sidenav__category > .sidenav__sections-list > .sidenav__section.is-active > .sidenav__section-name {
  font-weight: 700 !important;
}

.sidenav-extra-level__nav {
  display: none;
  padding-left: 15px;
}

.sidenav-extra-level__item.is-active .sidenav-extra-level__nav {
  display: block;
}

@media (max-width: 991px) {
  .sidenav-extra-level {
    display: none;
    margin-top: 10px;
  }

  .sidenav-extra-level.is-active {
    display: block;
  }
}

@media (min-width: 992px) {
  .btn.sidenav-btn {
    display: none;
  }
}

.lt-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  color: #0384fb;
  border: #0384fb 1px solid;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.lt-btn:hover,
.lt-btn:focus,
.lt-btn:active {
  color: #0269c9;
  border: #0269c9 1px solid;
  text-decoration: none;
}

.lt-btn--primary {
  background: #0384fb;
  color: #fff;
}

.lt-btn--primary:hover,
.lt-btn--primary:active,
.lt-btn--primary:focus {
  background: #0269c9;
  color: #fff;
}

.lt-contact-box {
  display: flex;
  padding: 1.5rem 2rem;
  padding-right: 15px;
  padding-left: 15px;
  color: #333333;
  flex-direction: column;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  align-items: flex-start;
}

.lt-contact-box:hover {
  text-decoration: none;
  color: #333333;
  border-color: #d1d1d1;
}

.lt-contact-box__icon {
  width: 50px;
  height: 50px;
}

.lt-contact-box__text {
  color: #7a7a7a;
}

.lt-contact-box__title {
  font-weight: 500;
}

.articles-wrap {
  background: url(/hc/theming_assets/01J3DCCNMAQPVSSY2W283QHYHP) no-repeat;
  background-size: cover;
}

.section--home {
  padding-top: 36px;
  padding-bottom: 36px;
}

.lt-category-accordion {
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.lt-category-accordion__link {
  cursor: pointer;
  border: 0;
  background: transparent;
}

[dir="ltr"] .lt-category-accordion__link {
  padding-right: 110px;
  text-align: left;
}

[dir="rtl"] .lt-category-accordion__link {
  padding-left: 110px;
  text-align: right;
}

.panel .panel-heading.active .lt-category-accordion__link:before {
  transform: rotate(135deg);
}

.lt-category-accordion__link:before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border-bottom: 2px solid #333333;
  transition: transform 0.3s;
  border-left: 2px solid #333333;
  transform: rotate(-45deg) translateY(-50%);
  margin-top: -5px;
}

.lt-category-accordion__link--active:before {
  transform: rotate(135deg);
}

.lt-category-accordion__link-icon {
  width: 46px;
  margin-right: 10px;
}

.lt-category-accordion__sections {
  display: none;
  border-top: 2px solid #e1e1e1;
}

.lt-article-list-item {
  display: block;
  margin-bottom: 5px;
}

.lt-article-list-item--more {
  margin-top: 15px;
}

.lt-category-accordion__sections .lt-article-list-item__link {
  color: #333333;
}

.lt-category-accordion__sections .lt-article-list-item__link:hover {
  color: #0384fb;
  text-decoration: none;
}

.lt-category-accordion__toggle {
  position: absolute;
  top: 50%;
  margin-top: -14px;
  font-size: 18px;
}

[dir="ltr"] .lt-category-accordion__toggle {
  right: 15px;
}

[dir="rtl"] .lt-category-accordion__toggle {
  left: 15px;
}

.lt-category-accordion__icon {
  width: 28px;
  height: 28px;
  padding: 4px 5px;
  font-size: 16px;
  color: #0384fb;
  pointer-events: none;
  border: 2px solid #0384fb;
  border-radius: 50%;
}

[dir="ltr"] .lt-category-accordion__icon {
  margin-left: 5px;
}

[dir="rtl"] .lt-category-accordion__icon {
  margin-right: 5px;
}

.lt-category-accordion__link--active .lt-category-accordion__icon:before {
  content: "\f068";
}

.lt-article-list--accordion {
  padding-top: 25px;
  margin-top: -25px;
  border-top: 1px solid #ddd;
}

.lt-category-accordion__link-inner {
  color: #333333;
}

.lt-category-accordion__link-inner:hover,
.lt-category-accordion__link-inner:focus,
.lt-category-accordion__link-inner:active {
  color: #0384fb;
}

.lt-section-link {
  color: #333333;
  font-weight: 500;
  font-size: 20px;
}

.lt-section-link:hover {
  color: #0384fb;
  text-decoration: none;
}

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

.lt-article-vote {
  position: relative;

  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 6px;
}

.lt-article-vote__controls {
  display: block;
  margin-bottom: 12px;
}

.lt-article-vote__item {
  min-width: 85px;
  padding: 10px;
  color: #00263e;
  border-color: #00263e;
  border-width: 2px;
}

.lt-article-vote__item:hover,
.lt-article-vote__item:focus,
.lt-article-vote__item:active {
  color: #fff;
  background-color: #00263e;
  border-color: #00263e;
  border-width: 2px;
}

.lt-article-vote__item:active {
  background-image: none;
}

[dir="ltr"] .lt-article-vote__item + .lt-article-vote__item {
  margin-left: 15px;
}

[dir="rtl"] .lt-article-vote__item + .lt-article-vote__item {
  margin-right: 15px;
}

.lt-article-vote__item:after {
  content: "";
}

.lt-article-vote__item:before {
  content: attr(title);
}

.lt-article-vote__item--voted {
  color: #fff;
  background-color: #00263e;
  border-color: #00263e;
}

.lt-article-vote__question {
  display: block;
  margin-bottom: 12px;
}

.lt-article-vote__count {
  display: none;
  color: #7a7a7a;
}

.search-filters-wrap {
  border-bottom: 1px solid #eee;
}

.search-filters-label {
  display: block;
  font-weight: 500;
}

.filter-list-item__link {
  padding: 3px 6px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.filter-list-item__link.is-active,
.filter-list-item__link:hover,
.filter-list-item__link:focus {
  background: #00263e;
  color: #fff;
}

/* Enable Article Comments */
#article-comments {
  padding-bottom: 60px;
}

#article-comments,
#article-comments .comments {
  display: block !important;
}

/* Header language */
.header .dropdown-toggle {
  color: #fff;
  font-weight: 500;
  border: 0px none;
  background: transparent;
}

.header .language-selector {
  padding-right: 15px;
}

@media(max-width:1160px) {
  .header .language-selector {
    padding-right: 8px;
  }

  .nav-wrapper a,
  .header .dropdown-toggle,
  .header .nav-wrapper a.submit-request {
    font-size: 14px;
    padding-right: 10px;
  }

  .header .language-selector {
    padding-right: 0px;
  }

  .header-contentContainer {
    padding-right: 8px;
  }

  #user #user-name {
    display: none;
  }

  .user-info > [role="button"]::after {
    padding-right: 5px;
  }
}


@media screen and (min-width:768px) and (max-width:864px) {

  .nav-wrapper a,
  .header .dropdown-toggle,
  .header .nav-wrapper a.submit-request {
    font-size: 12px;
    padding-right: 6px;
  }
}

/* Special Link ------------------------------------------------------------------ */
.nav-wrapper a.special-header-link {
  color: #FEF87D;
}


/* Cookie consent ------------------------------------------------------------------ */
.cookie-consent-banner {
  height: 200px;
  position: fixed;
  bottom: 0px;
  z-index: 50;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: #f0f6fe;
  padding: 0px 20px 20px 20px;
}
@media only screen and (max-width: 600px) {
    .cookie-consent-banner{
    height: 275px;
    }
}

.cookie-consent-banner .banner__text {
  margin-bottom: 20px;
}

.cookie-consent-banner .banner__buttons a {
  margin: 5px;
  z-index: 9999999;
}

.cookie-consent-banner .btn {
  display: inline-block;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 200px;
  padding: 14px 20px 12px;
}

.cookie-consent-banner .btn--teal-secondary {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: #1dcad3;
  --tw-text-opacity: 1;
  color: #00263e;
}

.cookie-consent-banner .btn--teal-secondary:hover {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: #1dcad3;
  --tw-bg-opacity: 1;
  background-color: #1dcad3;
  --tw-text-opacity: 1;
  color: white;
}

.cookie-consent-banner .btn--teal {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: #1dcad3;
  --tw-bg-opacity: 1;
  background-color: #1dcad3;
  --tw-text-opacity: 1;
  color: white;
}

.cookie-consent-banner .btn--teal:hover {
  border-color: rgba(95, 215, 222, 0.6);
  background-color: rgba(95, 215, 222, 0.6);
}

/* END Cookie consent ------------------------------------------------------------------*/


/* Chat widget trigger------------------------------------------------------------------ */

.widget-trigger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 1px solid;
  text-transform: none;
  font-weight: bold;
  letter-spacing: 0;
  border-radius: 42px;
  min-width: 95px;
  padding: 0 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(200px);
}

.widget-trigger svg {
  height: 22px;
  width: 22px;
  padding: 0;
  top: -1px;
  margin-right: 8px;
}

.widget-trigger.active {
  -webkit-animation: moveup 400ms ease forwards;
  -moz-animation: moveup 400ms ease forwards;
  -ms-animation: moveup 400ms ease forwards;
  -o-animation: moveup 400ms ease forwards;
  animation: moveup 400ms ease forwards;
  animation-delay: 700ms;
}

.widget-trigger:hover {
  border: 1px solid;
  color: #fff;
}

@-webkit-keyframes moveup {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }

  50% {
    opacity: .1;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframess movedown {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(200px);
    opacity: 0;
  }
}

@keyframes moveup {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }

  50% {
    opacity: .1;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes movedown {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(200px);
    opacity: 0;
  }
}

/* END Chat Trigger ------------------------------------------------------------------ */

/* Paligo accordion fix */

.article-body .panel.panel-default {
  border: 0px none !important;
  border-bottom: 1px solid #ddd !important;
  background: none !important;
  border-radius: 0px;
  box-shadow: none;
}

.article-body .panel-default > .panel-heading {
  display: flex;
  background: transparent;
  padding-bottom: 10px;
}

.article-body .panel .panel-heading .lt-category-accordion__link {
  width: auto !important;
  padding-left: 0px !important;
}

.article-body .panel .panel-heading .lt-category-accordion__title {
  width: auto !important;
  padding-left: 0px !important;
  display: flex !important;
}

.panel-heading .title:after {
  font-family: 'FontAwesome';
}

.article-body .panel .panel .panel-heading h4 {
  display: flex;
  align-items: center;
}

.article-body .panel .panel .panel-heading h4 img {
  margin-right: 12px;
}

.article-body .panel .panel-heading .title:after,
.article-body .panel .panel-heading h4:after {
  margin: 0;
  font-style: normal;
  content: "\f107" !important;
  font-size: 26px;
  margin: 0px;
  padding: 0px;
  line-height: 26px;
  height: auto;
  display: inline-block;
  margin-left: 10px;
  font-family: 'FontAwesome';
}

.article-body .panel .panel-heading.active .title:after,
.article-body .panel .panel-heading.active h4:after {
  transform: rotate(180deg);
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-white {
  color: #fff;
}

.footer-bottom {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #00263e;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .container ul {
  width: 70%;
}

.footer-bottom .container .footer-logo {
  display: none;
}

.footer-bottom .container a:hover {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width:768px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom .container .footer-logo {
    display: flex;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .footer-bottom .container ul {
    width: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

#site-footer a {
  font-size: 13px;
}

#site-footer .legal-links {
  width: auto;
  margin-right: 7px;
  margin-bottom: 5px;
}

.flex {
  display: flex;
}

@media (min-width: 767px) {

  #site-footer .legal-links:nth-child(-n+3):after,
  #site-footer .legal-links:nth-child(n+5):after {
    content: "|";
    margin-left: 7px;
  }
}

#site-footer .legal-links:nth-child(-n+4):after,
#site-footer .legal-links:nth-child(n+6):after {
  content: "|";
  margin-left: 7px;
}


#site-footer .legal-links:last-of-type:after {
  content: "";
  margin-left: 7px;
}



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

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle:hover {
  text-decoration: none;
}

.dropdown-toggle > * {
  display: inline-block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #87929D;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
}

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

.dropdown-menu[aria-expanded="true"] {
  display: block;
}

.dropdown-menu [role="separator"] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}

.dropdown-menu [role="menuitem"] {
  color: #333;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
}

[dir="rtl"] .dropdown-menu [role="menuitem"] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role="menuitem"]:hover, .dropdown-menu [role="menuitem"]:focus {
  background: #f3f3f3;
  text-decoration: none;
  color: #333;
}

.dropdown-menu [role="menuitem"][aria-selected="true"] {
  cursor: default;
}

.dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}

[dir="rtl"] .dropdown-menu [role="menuitem"][aria-selected="true"]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}

.dropdown-menu [role="menuitem"][hidden], .dropdown-menu [role="menuitem"][aria-hidden="true"] {
  display: none !important;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

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

[dir="rtl"] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}

.filters-in-section + div{
  border-top:1px solid #eee;
  padding-top:20px;
}

/* P&P Article integration ------ */
.required-plan {
  display: flex;
  align-items: center;
  margin-right: 24px;
  position: relative;
  top: 0; /* Fixes overlap */
  width: 100%; /* Ensures it takes full width */
 /* Aligns content to the left */
}

.required-plan-label {
  padding-right: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  min-width: 100px;
  position: relative; /* Changed from absolute */
  left: 0px;
  white-space: nowrap; /* Prevents breaking within the label */
}

.NonPnp-article-labels:has(.required-plan) .required-plan-label,
.article-labels:has(.required-plan) .required-plan-label {
  display: flex;
}

.fa {
  padding-right: 5px;
  color: #0369ea;
}

.article .article-labels,
.article .NonPnp-article-labels {
  display: flex;
  flex-wrap: wrap; /* Labels will wrap properly instead of overlapping */
  gap: 10px; 
  width: 100%; /* Forces labels to appear below Required Plan */
  padding-left: 0px; /* Removes unnecessary left padding */
  padding-bottom: 20px;
  position: relative;
  justify-content: flex-start; /* Aligns labels to the left */
}

.article .article-labels span a:not(.anchor-icon),
.article .NonPnp-article-labels span a:not(.anchor-icon) {
  color: #333;
  top: 0px;
  visibility: visible;
  display: inline-block; /* Ensures proper wrapping */
  word-wrap: break-word; /* Breaks long words if necessary */
  max-width: 100%; /* Prevents overflowing */
}


/* bkp for required plan start */
/* .required-plan {
  display:flex;
  align-items:center;
  padding-bottom:10px;
  margin-right:24px;
}

.required-plan:first-of-type:before {
  content:'Required plan:';
  padding-right:10px;
  font-weight:600;
  text-transform:uppercase;
  font-size:14px;
  color:#444;
  display:flex;
  align-items:center;
  min-width:100px;
  position:absolute;
  left:0px;
}
.fa {
  padding-right: 5px;
  color: #0369ea;
}

.article .article-labels{
  display:none;
  flex-wrap:wrap;
  position:relative;
  padding-left:130px;
  padding-bottom:20px;
}
.article .article-labels span a:not(.anchor-icon){
  color:#333;
  top:0px;
  visibility:visible;
  display:flex;
}
/* changed code for DC end */
/*Abhinav's addition for Project Return and Re-architecture starts .. notification error in case of blank form submission*/
.notification-inline.notification-error {
	background-color: #fff0f1;
	color: #cc3340;
}

.notification-inline {
	margin-top: 5px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}

.notification-error {
	background: #ffeded;
}

.notification {
	display: table;
	font-family: sans-serif;
	font-size: 12px;
	transition: height .2s;
	width: 100%;
	color: #555;
}

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

.notification-icon::before,
.notification-inline.notification-error::before {
	background-size: cover;
	content: "";
	display: inline-block;
	height: 14px;
	width: 14px;
	vertical-align: middle;
}

.notification-inline[aria-hidden="true"] {
	display: none;
}
/*Abhinav's addition for Project Return and Re-architecture ends */
.article a[id]:not(.anchor-icon) {
    /* display: block; */
    /* position: relative; */
    /* top: -100px; */
    /* visibility: hidden; */
}
/*Escalation button*/
@media (min-width: 1024px) {
  .submit-request {
    padding: 0;
    margin-right: 20px;
    border: 1px solid white;
    padding: 8px 12px;
    border-radius: 4px;
    color: white;
    transition-duration: 300ms;
  }

  .submit-request:hover {
    background: white;
    color: #00263e;
    text-decoration: none;
  }
}
.escalate-block{
display: flex;
flex-direction: row-reverse;
}
.escalate-Button{
  background-color: #00263e;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  margin-right: 2px;
  padding: 8px 8px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}
/*Abhinav's addition of new classes for P&P pricing new required plans*/
.article .NonPnp-article-labels{
  display:none;
  flex-wrap:wrap;
  position:relative;
  padding-left:130px;
  padding-bottom:20px;
}
.article .NonPnp-article-labels span a:not(.anchor-icon){
  color:#333;
  top:0px;
  visibility:visible;
  display:flex;
}
.hidden {
  display: none !important;
}
/*RR Modal if org is samsara*/
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Black with opacity */
    padding-top: 60px;
  }

  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
  }

  .modal-buttons {
    margin-top: 20px;
  }

  .modal-button {
   padding: 4px 12px;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #00263e;
    color: #ffffff;
    border-radius: 5px;
  }

  .modal-button:hover {
    background-color: #fff;
    color: #141111;
  }
/*end of RR modal*/
/*start of escalation Modal for capturing additional info*/
/* Modal styles */
.modal-escalate {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Offset by half of its width/height */
    z-index: 1000;
    width: 80%;
    max-width: 600px; /* Maximum width of the modal */
    background-color: #00263e; /* Black background with transparency */
    padding: 20px;
    border-radius: 8px;
}

/* Modal content styling */
.modal-content-escalate {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left for a better form layout */
}

/* Styling for label */
.modal-content-escalate label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Styling for textarea */
.modal-content-escalate textarea {
    width: 100%;
    height: 150px; /* Increased height for the textarea */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical; /* Allow the user to resize the input vertically */
}

/* Styling for buttons container */
.modal-button-escalate {
    margin-top: 20px;
    text-align: center;
}

/* Styling for Submit button */
.modal-button-escalate button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff; /* Blue background */
    color: #fff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-button-escalate button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Optional: Close button styling */
.modal-content-escalate .close-btn {
    background-color: #ccc;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
.modal-content-escalate .close-btn:hover {
    background-color: #bbb;
}

/*end of escalation modal*/
