@charset "UTF-8";
/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  background-color: $background_color;
  color: $text_color;
  font-family: $text_font;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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


h1,h2,h3,h4,h5,h6 { font-family: Verdana, sans-serif; font-weight: 400; /* customize_heading_color */ color:#454444; /* customize_heading_color */ margin-top: 0; }

h1 { font-size: 2.0em; line-height: 1em; margin: 0 0 0.75em; text-align: left}
h2 { font-size: 1.5em; line-height: 1.25em; margin: 0 0 0.5em; text-align: left} 
h3 { font-size: 1.2em; margin: 0 0 .75em; text-align: left}
h4 { font-size: 1em; font-weight: bold; margin: 0 0 .75em; text-align: left}

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}

a {
	color:  #00afeb; /* NANOblue */
	font-style: normal;
	font-size: 100%;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
 	border-bottom: none;
}
h1 a, h2 a, h3 a { /* Links within headers */
  text-decoration: none; 
  color: #00afeb; /* NANOblue */ 
} 
h1 a:hover, h1 a:active, h1 a:focus, h2 a:hover, h2 a:active, h2 a:focus, h3 a:hover, h3 a:active, h3 a:focus{
 	border-bottom: 1px solid  #00afeb; /* NANOblue */
}

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

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

input:focus {
  border: 1px solid $brand_color;
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url($assets-dropdown-arrow-svg) 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 $brand_color;
}

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 $brand_color;
}

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

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

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

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

/***** Normal Buttons *****/
.button, [role="button"] {
  border: 1px solid $brand_color;
  border-radius: 4px;
  color: $brand_color;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color .12s ease-in-out, border-color .12s ease-in-out, color .15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
}

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

.button::after, [role="button"]::after {
  color: $brand_color;
}

.button:hover, .button:active, .button:focus, .button[aria-selected="true"], [role="button"]:hover, [role="button"]:active, [role="button"]:focus, [role="button"][aria-selected="true"] {
  background-color: $brand_color;
  color: $brand_text_color;
  text-decoration: none;
}

.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 {
  background-color: darken($brand_color, 20%);
  border-color: darken($brand_color, 20%);
}

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

.button-large, input[type="submit"] {
  background-color: $brand_color;
  border: 0;
  border-radius: 4px;
  color: $brand_text_color;
  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: darken($brand_color, 20%);
}

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

.button-secondary {
  color: lighten($text_color, 20%);
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: $text_color;
  border: 1px solid #ddd;
  background-color: darken($background_color, 3%);
}
/***** End Buttons Normal *****/

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

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

.table th,
.table th a {
  color: lighten($text_color, 20%);
  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;
  }
}


/***** End Tables *****/

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

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

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

.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 $brand_color;
  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: lighten($text_color, 20%);
  font-size: 12px;
  margin: 5px 0;
}

[data-loading="true"] input,
[data-loading="true"] textarea {
  background: transparent url($assets-loader-gif) 99% 50% no-repeat;
  background-size: 16px 16px;
}

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

.form footer a {
  cursor: pointer;
  margin-right: 15px;
  color: #4ac9ff;
  text-decoration: none;
}

.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: darken($link_color, 20%);
}
/***** End Forms *****/

/***** 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,
.vote-up::before,
.vote-down::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;
  content: "\1F44D";
}

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

.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";
}
/***** End Icons *****/

/***** Header *****/
.header {/*top bar - general*/
  margin: 0 auto;
  padding: 0 2%;
  position: relative;
  align-items: center;
  justify-content: space-between;
  display: block;
  max-width: 100%;
  height: 76px;
  background-color: #231c3a /* white #FFF*/ /* #231c3a nanopurple */
}

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

.header-inner { /*Top bar - divided for content*/
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  align-items: center;
  display: flex;
  height: 85px;
  justify-content: space-between;
}

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

/*nav-wrapper is for nanoscribe.com, links, request, profile*/
.nav-wrapper a {
  border: 0;
  color: #241d3b;
  display: none;
  font-size: 14px;
  padding: 0 5% 0 0;
  width: auto;
}

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

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

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

.nav-wrapper a.login {
  display: inline-block;
  color: #f4f3f4;
}

.nav-wrapper .icon-menu {
  display: inline-block;
  margin-right: 10px;
  color: #f3f4f3;
}
.nav-wrapper .icon-menu:hover {
  cursor: pointer;
}

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

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


/*user-nav is for nanoscribe.com, links and request*/
.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  padding-right: 100px;
  text-align: center;
}

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

.user-nav[aria-expanded="true"] {
  background-color: #241d3bE6; /*slightly transparent*/
  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;
}

/*NanoGuide in header*/
.NanoGuide {
  position: relative;
  top: 6px;
  vertical-align: middle;
  padding: 0 5%;
}
.NanoGuide h3 {
  padding: 0 5%;
}

.NanoGuide .ns {
  color: #f4f3f4 /* NANOgrey */
}

.logo img {
  max-height: 45px;
  padding: 0 5% 0 0;
}


/* submit a request */
.user-nav a{ /* box */
  text-align: center;
  color: #f3f4f3 /* NANOgray */
}
.user-nav a:hover {
  text-decoration: underline;
}


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

.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;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

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

/***** Footer *****/
.footer {
  border-top: 1px solid #ddd;
  /* quite some lines have a different gray- too much effort to change all */
  margin-top: 10px;
  padding: 10px 0px 10px 0px; /* up, right, down, left */
}

.footer a {
  text-decoration: none;
  /* box */
  text-align: center;
  color: #454444; /* black */
}

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

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

.footer-language-selector {
  color: lighten($text_color, 20%);
  display: inline-block;
  font-weight: 300;
}
/***** End Footer *****/

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

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

.breadcrumbs li {
  color: lighten($text_color, 20%);
  display: inline;
  font-weight: 300;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.breadcrumbs li a:visited {
  color: $link_color;
}
/***** End Breadcrumbs *****/

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

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

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

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

.search::before {
  position: relative;
  transform: translateY(-50%);
  background-color: #fff;
  content: "\1F50D";
  font-size: 18px;
  position: absolute;
  /* magnification glas */
  color: #241d3b; /* NANOpurple*/
	left: 10px;
  top: 20px;
}

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

.search-full input[type="search"] {
  border: 1px solid #fff;
}
/***** End Search Field *****/

/***** Hero component (background image on home page)*****/
.hero {
  background-image: url(/hc/theming_assets/01J2XHR1H99QV0CXR3RP5MDR7N);
  background-position: left;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: auto;
  /* making it smaller and centered */
  max-width: 1160px;
	margin: 0px auto;
  margin-bottom: 20px;
	margin-top: -23px;   /* must be adjusted to font size of welcome text for some reason */
}

/* Search field */
.hero-inner {
  position: relative;
  top: 50%;
  margin: 0px;
  transform: translateY(100%);
  width: 336px;
  left: -20px;
}
.search input[type="search"] {
  border: 3px solid; /*define width of border and color*/
  border-color:  #f4f3f4; /* NANOgrey */
  border-radius: 0px; /* to make round edges*/
  width: 70%; /* to make search field smaller--> requires to move the magnification glass as well*/
  padding-left: 40px; /* moves 'search' entry */
}
.hero-inner .search input[type="search"]{
  border: 0px;
  width: 100%;
}

.hero-inner .search::before {/* magnification glas */
  position: relative;
  color: #241d3b; /* NANOpurple*/
	left: -144px;
  top: 30px;
}
.search.search-full::before {/* magnification glas */
  background: rgba(0, 0, 0, 0); /* transparent*/
}
.hero-inner .search input[type="search"] {/*  */
  background: rgba(244, 243, 244, 0.80); /* NANOgrey transparent*/
  color: #241d3b; /* NANOpurple*/
  font-weight: bold;  
}
/***** End Hero *****/

.help-explain-text{
  font-size: 1.2em;
}

/* welcome text */
.Welcome h2{
	color: #000; /* black */  
  margin-bottom: 30px;
  font-size: 30px;
  text-align: center;
}

/***** Page header *****/
.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 10px;
  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;
}
/***** End page header *****/

/***** Sub-nav *****/
.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
  min-height: 40px;
  padding-bottom: 0px;
}

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

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

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

.sub-nav a {
  color: #00afeb; /* NANOblue */
  text-decoration: none;
}
.sub-nav a:hover {
 	border-bottom: 1px solid  #00afeb; /* NANOblue */
}
/***** End sub-nav *****/

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

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

.blocks-item {
  color: $brand_color;
  margin: 0 0 30px;
  max-width: 100%;
  text-align: center;
  border: 3px solid #FFFFFF; /* white */
  border-radius: 0px; /* to make round edges*/
  background-color: #FFFFFF; /* white */
  box-sizing: border-box; /*???*/
  justify-content: center; /*???*/
  padding: 8px;
  flex: 0 1 auto;
  flex-direction: column;
  display: block;
  width: 240px; /* 2021-09-07 BS: */
}

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

.blocks-item img{
  width: 25%;
}

.blocks-item:hover, .blocks-item:active, .blocks-item:focus {
  border: 3px solid #00afeb; /* NANOblue */
}

.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  background-color: $brand_color;
}

.blocks-item:hover *, .blocks-item:focus *, .blocks-item:active * {
  color: $brand_text_color;
  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: #00afeb; /* NANOblue */
  text-decoration: none;
}

.blocks-item-internal a:hover {
  border-bottom: 1px solid  #00afeb; /* NANOblue */
}

.blocks-item-link {
  color: $brand_color;
  margin-bottom: 0;
  padding: 0px; /* up, right, down, left */
}

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


.blocks-item-description {
  font-weight: 300;
  margin: 0;
  color: #454444; /* black */
}

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

/***** Homepage *****/
.section {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .section {
    margin-bottom: 60px;
  }
}

.home-info {
  display: flex;
  justify-content: center;   /* horizontal */
}

.info-box{
  max-width: 900px;
  width: 100%;
  text-align: center;
}

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

/***** Promoted articles (currently only used for Change Notes) *****/
.promoted-articles {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

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

@media (min-width: 1024px) {
  .promoted-articles-item {
    align-self: flex-end;
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%;
    /* 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;
  display: block;
  padding: 15px 0;
  color: #00afeb; /* NANOblue */
  text-decoration: none;
}

.promoted-articles-item a:hover {
 	border-bottom: 1px solid  #00afeb; /* NANOblue */
}

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

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

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

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

.community,
.activity {
  border-top: 1px solid #ddd;
  padding: 30px 0;
}
/***** End Community section *****/

/***** 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: $text_color;
  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: lighten($text_color, 20%);
  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: $brand_color;
  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;
}
/****** End recent activities *****/

/***** Category pages *****/

/* on Category pages, the workspace */
.category-container {
  display: flex;
  justify-content: center;
}

/* on Category pages, the workspace (smaller part) */
.category-content {
  flex: 1;
}

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

/* on Category pages, the workspace around sections  (without category header) */
.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 { /* on Category pages, the workspace around individual sections including articles*/
  flex: initial;
  border: 3px solid; /*define width of border and color*/
  border-color:  #f4f3f4; /* NANOgrey */
  padding: 0px;
  margin: 10px;
} 
@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 {/* on Category pages, the section title only */
  background-color: #f4f3f4; /* NANOgrey */
  padding: 2px 10px 2px 10px; /* up, right, down, left */
  position: relative;
  top: -2px;
  margin-bottom: 0;
}

.section-tree-title a {
  color: #454444; /* black */
  text-decoration: none;
}

.section-tree-title a:hover, .section-tree-title a:active, .section-tree-title a:focus {
  color: #00afeb; /* NANOblue */
  text-decoration: none;
 	border-bottom: none;
}

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

.section-tree-description{
  background-color: #f4f3f4; /* NANOgrey */
  padding: 2px 10px 2px 10px; /* up, right, down, left */
  position: relative;
  top: -17px;  
}
.section-tree-description a {
	color:  #454444; /* black */
	font-style: normal;
	font-size: 100%;
  text-decoration: none;
 	border-bottom: none;
}
.section-tree-description a:hover, .Info-blocks-lists-item a:active, .Info-blocks-lists-item a:focus {
	color:  #00afeb; /* NANOblue */
  text-decoration: none;
}

.article-list-item {/* on Category page and section page, the article names */
  border-bottom: none;
  font-size: 16px;
  padding: 4px 10px 4px 20px; /* up, right, down, left */
}

.article-list-item a {
  color: $text_color;
}

.article-list-item a:hover { 
  color: #241d3b; /* NANOpurple; #f4f3f4; NANOgrey */ 
  text-decoration: none;
}

.icon-star::before {
  color: $brand_color;
  font-size: 18px;
  content: "\2605";
}
/***** End Category pages *****/

/***** Section pages *****/
/* on section pages, the workspace */
.section-container {
  display: flex;
  justify-content: center;
}

/* on section pages, the workspace (smaller part) */
.section-content {
  flex: 0 1 60%;
}

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

.section-subscribe .dropdown-toggle::after {
  display: none;
}
/***** End Section pages *****/

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 20%     | 80%     | 0%
  */
  flex: 1 0 auto;
  padding-right: 0px;
  /* this enumerates figures, tables and codes to reference them easier */
  counter-reset: CounterTab CounterFig CounterLists;
}

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

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

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

.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0px 0px 0px; /* up, right, down, left */
}

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

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

.article-title{
  margin: 0;
}

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

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

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

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

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

.article-body{/*needed to add this to make the hover box being positioned relative to the article body, rather than the position of the word*/
  position: relative; 
	}

.article-body h1{font-size: 1.5em;} 
.article-body h2{font-size: 1.2em;} 
.article-body h3{font-size: 1.1em;}

.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 {
  margin: 0;
}


/* BASIC LIST STYLES (unordered, ordered, definition) */
.article-body li ul, 
.article-body li ol       { margin:0 1.5em; }
.article-body ul, ol      { margin: 0 0 1.5em 2em; 
  														padding:0;   
  														text-align: justify;
}

.article-body ul    	      		{ list-style-type: disc; }
.article-body ul.NSList ul			{ list-style-type: circle;
																margin: 0 1.5em;} /* second level */
.article-body ul.NSList ul ul		{ list-style-type: square;
																margin: 0 1.5em;} /* third level */

.article-body ol          { list-style-type: decimal; }
.article-body dl          { margin: 0 0 1.5em 0; }
.article-body dl dt       { font-weight: bold; }
.article-body dd          { margin-left: 1.5em;}

/* NSList: MULTI-LEVEL x.x.x NUMBERING (INDEPENDENT OF .code) */
/* Start the hierarchical counter and remove default numbers */
.article-body ol.NSList {
  counter-reset: nsList;
  list-style: none;
  margin: 0 0 1.5em 0;
  padding-left: 2.5em;
}

/* Positioning anchor for the pseudo-number column */
.article-body ol.NSList li {
  position: relative;
  margin: 0.4em 0;
}

/* Show hierarchical numbers ONLY on <ol> branches that are NOT .NScode */
.article-body ol.NSList > li::before,
.article-body ol.NSList ol:not(.NScode) > li::before {
  position: absolute;
  left: -2.5em;
  counter-increment: nsList;
  content: counters(nsList, ".") ". ";
}

/* Whenever an <ol> continues the hierarchical chain, reset ns for that level */
.article-body ol.NSList ol:not(.NScode) {
  counter-reset: nsList;
  list-style: none;
  padding-left: 2.5em; /* keeps the number gutter consistent */
}

/* Bullet lists inside NSList should stay as bullets and not advance counters */
.article-body ol.NSList ul {
  list-style: disc;
  margin: 0.3em 1.5em 1em 2em;
  padding-left: 1.2em;
}
.article-body ol.NSList ul li { position: static; }
.article-body ol.NSList ul li::before {
  content: none !important;
  counter-increment: none !important;
}

/* Optionally vary deeper bullet levels */
.article-body ol.NSList ul ul { list-style: circle; }
.article-body ol.NSList ul ul ul { list-style: square; }

/* end of lists: code lists are further down; INDEPENDENT NUMBERING (1., 2., 3., …) Works anywhere, including inside NSList.*/


.article-body p{  text-align: justify;}
.article-body div{  text-align: justify;}

.article-body a:visited {
  color: darken($link_color, 20%);
}

.article-body code {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.article-body pre {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.article-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten($text_color, 20%);
  font-style: italic;
  padding: 0 15px;
}

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

/* References */
.article-body .ref{
	color: #241d3b; /* NANOpurple; #f4f3f4; NANOgrey */ 
 	border-bottom: none;
	font-style: normal;
	font-size: 80%;
  vertical-align: super;
  line-height: normal;
}

/*Lines */
.article-body hr {
  margin: -1em 0 2 0;
  width: 100%;
	height: 3px;
	background-color: #f4f3f4; /* NANOgrey */
  border-radius: 5px 5px 5px 5px;
  border: 2px ;
  border-color: #f4f3f4; /* NANOgrey */
}

.article-body a {
  color: #00afeb; /* NANOblue */
  text-decoration: none;
}
.article-body a:hover {
  border-bottom: 1px solid  #00afeb; /* NANOblue */
}

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

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

.article-comment-count {
  color: lighten($text_color, 20%);
  font-weight: 300;
}

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

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

/* ToC in article container*/
.article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin: 10px 0px 20px 0px; /* up, right, down, left */
  padding: 0;
}

@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}
.article-sidebar a:hover { 
  color: #241d3b; /* NANOpurple; #f4f3f4; NANOgrey */ 
  text-decoration: none;
}


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

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

.article-relatives > * {
  flex: 1 0 auto;
  margin-right: 0;
}

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

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

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

.article-vote {
  background: transparent;
  border: 1px solid $brand_color;
  color: $brand_color;
  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: $brand_color;
}

.article-vote:hover {
  background-color: $brand_color;
}

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

.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 {
  display: block;
  padding: 20px 0;
  color: #00afeb; /* NANOblue */
  text-decoration: none;
}

.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}
.article-return-to-top a:hover {
  border-bottom: 1px solid  #00afeb; /* NANOblue */
}

.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: $brand_color;
  color: $brand_text_color;
  text-decoration: none;
}

.article-unsubscribe:hover {
  background-color: darken($brand_color, 20%);
  border-color: darken($brand_color, 20%);
}

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

.sidenav-item {
  border-radius: 4px;
  color: $text_color;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: $brand_color;
  color: $brand_text_color;
  text-decoration: none;
}

.recent-articles h3,
.related-articles h3 {
  font-size: 15px;
  margin: 20px 0;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}
/***** End Articles *****/

/***** 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: $text_color;
  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: lighten($text_color, 20%);
}
/***** End Attachments *****/

/***** 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 {
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
  color: #4ac9ff;
  text-decoration: none;
}

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

.share a:hover::before {
  color: $brand_color;
}

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

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

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

.share-googleplus::before {
  content: "\e902";
}
/***** End Social share links *****/

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.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: lighten($text_color, 20%);
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 0;
}

.comment-callout a {
  color: $brand_color;
}

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

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

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

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

.comment-wrapper.comment-official {
  border: 1px solid $brand_color;
  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: $brand_color;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  font-family: $text_font;
  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 {
  margin: 0;
}

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

.comment-body a:visited {
  color: darken($link_color, 20%);
}

.comment-body code {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten($text_color, 20%);
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}
/***** End comments *****/

/***** 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: lighten($text_color, 20%);
  display: block;
  margin: 3px 0;
}

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

.vote-up:hover::before,
.vote-down:hover::before {
  color: $brand_color;
}

.vote-up::before, .vote-down::before {
  color: lighten($text_color, 20%);
  font-size: 24px;
}

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

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

.vote-voted::before {
  color: $brand_color;
}

.vote-voted:hover::before {
  color: darken($brand_color, 20%);
}
/***** End vote *****/

/***** 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: darken($background_color, 3%);
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: lighten($text_color, 20%);
  content: "\2699";
  display: block;
  font-size: 13px;
  margin: auto;
  padding: 5px;
}
/***** End Actions *****/

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

.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: $brand_color;
}

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

.community-follow [role="button"][aria-selected="true"] {
  background-color: $brand_color;
  color: $brand_text_color;
}

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

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: darken($brand_color, 20%);
  border-color: darken($brand_color, 20%);
}

.community-follow [role="button"]::after {
  border-left: 1px solid $brand_color;
  content: attr(data-follower-count);
  color: $brand_color;
  display: inline-block;
  font-family: $heading_font;
  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 $brand_color;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}
/***** End Community *****/

/***** 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: $link_color;
  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: darken($link_color, 20%);
}

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

.striped-list-count {
  color: lighten($text_color, 20%);
  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: $text_color;
    display: block;
    font-weight: 400;
  }
}
/***** End Striped List *****/

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

.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: lighten($text_color, 20%);
}

.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;
}
/***** End Status Label *****/

/***** 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: $text_font;
  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 {
  margin: 0;
}

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

.post-body a:visited {
  color: darken($link_color, 20%);
}

.post-body code {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten($text_color, 20%);
  font-style: italic;
  padding: 0 15px;
}

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

.post-comment-count {
  color: lighten($text_color, 20%);
  font-weight: 300;
}

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

.post-comment-count .icon-comments {
  color: $brand_color;
  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;
  }
}
/***** End Post *****/

/***** Collapsible Elements for mobile *****/
/* 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: $text_color;
  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;
    color: #00afeb; /* NANOblue */
  }
}

.collapsible-nav-list li a {
  color: $text_color;
  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 $brand_color;
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #00afeb; /* NANOblue */
  text-decoration: none;
}

.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-list li a:hover, .collapsible-nav-list li[aria-selected="true"] a:hover {
 	border-bottom: 1px solid  #00afeb; /* NANOblue */
}

.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;
}
/***** End Collapsible Elements for Mobile *****/

/***** My-activities *****/
.my-activities-nav {
  background-color: darken($background_color, 5%);
  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: $brand_color;
}

.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: $brand_color;
  color: $brand_text_color;
}

.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: $brand_color;
  border-radius: 4px;
  color: $brand_text_color;
  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: darken($brand_color, 20%);
  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: lighten($text_color, 20%);
  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: lighten($text_color, 20%);
}
/***** End my-activities *****/

/***** 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: lighten($text_color, 20%);
  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 $brand_color;
}

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

.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: darken($background_color, 3%);
    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: lighten($text_color, 20%);
  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;
}
/***** End Request *****/

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

[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: $text_color;
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 15px;
  padding: 10px 12px;
  color: #4ac9ff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 13px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: $brand_color;
}

.pagination-current a, .pagination-current span {
  color: $brand_text_color;
}

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

.pagination li:hover:not(.pagination-current) a {
  color: #00afeb; /* NANOblue */
  text-decoration: none;
}
.pagination li:hover:not(.pagination-current) a:hover {
 	border-bottom: 1px solid  #00afeb; /* NANOblue */
}
/***** End Pagination *****/

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

.meta-group * {
  display: inline;
}

.meta-data {
  color: lighten($text_color, 20%);
  font-size: 13px;
  font-weight: 300;
}

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



/***** User Profiles *****/
.profile-header {
  padding: 30px 0;
  background-color: darken($background_color, 3%);
}

.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: $brand_color;
  border: 0;
  color: $brand_text_color;
  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: lighten($text_color, 20%);
  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 $brand_color;
  border-radius: 4px;
  color: $brand_color;
  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: darken($background_color, 5%);
  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: lighten($text_color, 20%);
  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: darken($background_color, 3%);
}

@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: $background_color;
  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;
}
/***** End User Profiles *****/

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  /*margin-left: 50px;*/
}

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

.search-results-column {
  flex: 1;
  padding-left: 5%;
}
.search-results-column:first-child {
  padding-left: 0px;
}

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

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

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

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


.search-result-votes, .search-result-meta-count {
  color: lighten($text_color, 20%);
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: $brand_color;
}

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

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

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

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

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

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

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

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

.request_box{
}
.search-result-link {
  font-size: 1.2em;
  color:  #00afeb; /* NANOblue */
}
.search-result-description em {  
  font-weight: bold;
  font-style: italic;
}
/***** End Search-Results *****/

/***** Nanoscribe products ****/
/* highlights nanoscribe products */
.ns {
	color: #4a5da7; /* NANOpurple */
	font-style: normal;
	font-size: 100%;
  font-weight: bold;
}
.NSTable th em.ns{	color: #FFFFFF; /* white*/ 
				}

/* highlights file and folder path */
.path {
	color:  #241d3b; /* NANOpurple */ 
	font-style: italic;
	font-size: 100%;
}
/***** End Nanoscribe products *****/


/***** NS Buttons *****/
/* Video toggle button content */
.NSVideoToggle {
  color: #00afeb;
	background-color: #241d3b;
}

/* software Buttons */
.NSButton, .NSButtonPurple, .NSButtonBlue, .NSButtonLightBlue, .NSButtonYellow {
	font-style: normal;
  width: 50px;
	font-size: 100%;
	border: 1px solid;
	border-radius: 0px;
	margin: 0px 0px 0px 0px; /* up, right, down, left */
	padding: 1px 2px 1px 2px;	/* up, right, down, left */
	background-repeat: no-repeat;
	background-position: 10px center;
	color: #000000; /* black */
	background-color: #f4f3f4; /* NANOgrey */  
	text-align: center;
}
.NSButtonPurple {
	color: #ffffff; /* white */
	background-color: #241d3b; /* NANOpurple */
  border-color: #000000; /* black */
}
.NSButtonBlue {
	color: #ffffff; /* white */
	background-color: #4a5da7; /* NANOblueTwo */
  border-color: #241d3b; /* NANOpurple */
}
.NSButtonLightBlue {
	color: #ffffff; /* white */
	background-color: #00afeb; /* NANOblue */
  border-color: #241d3b; /* NANOpurple */
}
.NSButtonYellow {
	color: #000000; /* black */
	background-color: #f8d43c; /* Yellow */  
}

.NSButtonActive, .NSButtonTranscript, .NSButtonActive_Quiz {
	border: 0px solid;
  color: #00afeb;
	background-color: #241d3b;
}
.NSButtonActive:hover, .NSButtonTranscrip:hover, .NSButtonActive_Quiz:hover{
  background-color: #00afeb; /* NANOblue */
  color:  #FFFFFF; /* white*/
  text-decoration: none;
}
/***** End NS Buttons *****/


/***** Info, warn Boxes *****/
.info, .success, .warning, .warningC, .bruise, .corrosive, .DontTouch, .electro, .flame, .environment, .fragile, .goggles, .gloves, .Hvoltage, .laser, .laserClass1, .laserClass3b, .laserwInterlock, .laserwoInterlock, .radiation, .toxic, .error, .validation, .changeNotes{
	border: 3px solid;
  border-radius: 0px; /* to make round edges */
  font-weight: bold;
	margin: 10px 0px;
	padding:15px 10px 15px 50px;	/* up, right, down, left */
	background-repeat: no-repeat;
	background-position: 5px;
  background-size: 35px;
  background-color: #FFFFFF; /* white */
}
.info {
  font-weight: normal;
	border-color: #00afeb; /* NANOblue */ 
	background-image: url(/hc/theming_assets/01HZPEM3PR2J289HNNPYXN7JF8);
}

.success {
  font-weight: normal;
  border-color: #C6EEFF; /* bright blue */
	background-image:url(/hc/theming_assets/01HZPEM3ZR4Z8TRE8X46PK6SBS);
}
.changeNotes {
  font-weight: normal;
  border-color: #C6EEFF; /* bright blue */
	background-image:url(/hc/theming_assets/01HZPEM3ZR4Z8TRE8X46PK6SBS);
  margin: 0px 10px;
  padding: 42px 15px 25px 50px;
}
.warning, .warningC, .bruise, .corrosive, .DontTouch, .electro, .flame, .environment, .fragile, .goggles, .gloves, .Hvoltage, .laser, .laserClass1, .laserClass3b, .laserwInterlock, .laserwoInterlock, .radiation, .toxic{
  color: #953735; /* dark red */
	border-color: #953735; /* dark red */
}
.warning{background-image: url(/hc/theming_assets/01HZPEM8KK67RWEHBAMBYM2QBY);}
.warningC{background-image: url(/hc/theming_assets/01HZPEM8W78NYS1KJYKN375W2Y);}
.bruise{	background-image: url(/hc/theming_assets/01HZPEM5YX1E4NH051KZ6JZNRR);}
.corrosive{	background-image: url(/hc/theming_assets/01HZPEM62Q8170Z8Y2Q3HY7GPW);}
.DontTouch{	background-image: url(/hc/theming_assets/01HZPEM669KRE9DKQKVC2XH9FR);}
.electro{	background-image: url(/hc/theming_assets/01HZPEM69ZXTXKYFJFEEK65MBV);}
.flame{	background-image: url(/hc/theming_assets/01HZPEM91X43234DAM6M4NW0QE);}
.environment{	background-image: url(/hc/theming_assets/01HZPEM6DJCDKC9J5Z3WJ0QJDY);}
.fragile{	background-image: url(/hc/theming_assets/01HZPEM6HCSMCH2CPDEW77PPJ4);}
.goggles{	background-image: url(/hc/theming_assets/01HZPEM6PM8GVJ17F007CQXK3E);}
.gloves{	background-image: url(/hc/theming_assets/01HZPEM8QNW0PQTMASKF7FD7RK);}
.Hvoltage{	background-image: url(/hc/theming_assets/01HZPEM6TR1ZRZ3H0FP845Z2K3);}
.laser{	background-image: url(/hc/theming_assets/01HZPEM7JKPC3T6KDN799Z5HGH);}
.laserClass1{	background-image: url(/hc/theming_assets/01HZPEM7Q4SDNF8P2HT894881X);}
.laserClass3b{background-image: url(/hc/theming_assets/01HZPEM7X8BMEWKJE0MKWY4TDW);}
.laserwInterlock{	background-image: url(/hc/theming_assets/01HZPEM81WVAPS72QJ8AGZDZ6F);}
.laserwoInterlock{	background-image: url(/hc/theming_assets/01HZPEM85JK3WV3Q6HHBQGTK7N);}
.radiation{background-image: url(/hc/theming_assets/01HZPEM89HBZZE1X6Z7REJEPD3);}
.toxic{	background-image: url(/hc/theming_assets/01HZPEM8FXWP5K4S7B6MHSNQ1J);}
.error {
	color: #C0504D; /* ns accent red */
	border-color: #C0504D; /* ns accent red */
	background-image: url(/hc/theming_assets/01HZPEM3VXWH6389K56HKDWZNJ); 
}
.validation {
	color: #C0504D; /* ns accent red */
	border-color:  #f4f3f4; /* Nanogrey */
	background-image: url(/hc/theming_assets/01HZPEM45BMJERWHVKE6SHRPYN);
}
/***** End info, warn boxes *****/

/***** social media *****/
.linkedin, .twitter, .xing, .youtube, .facebook{
	margin: 2px;
	padding: 4px 10px 4px 10px; /* up, right, down, left */
  background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
	background-color: #FFFFFF; /* white */
	color: transparent;
}
.linkedin{
  background-image: url(/hc/theming_assets/01HZPEMB885YJTMX1EDVM5HM26);
}
.twitter{
  background-image: url(/hc/theming_assets/01HZPEMBCGC723G3NMPAKJ7CJB);
}
.xing{
  background-image: url(/hc/theming_assets/01HZPEMBHMDKHP6J971CNAMNG7);
}
.youtube{
  background-image: url(/hc/theming_assets/01HZPEMBPASKC34C0YTGZQCNNR);
}
.facebook{
  background-image: url(/hc/theming_assets/01HZPEMBVDBG4G7A3X7Y1TPEK4);
}
.linkedin:hover, .linkedin:focus, .linkedin:active, .twitter:hover, .twitter:focus, .twitter:active, .xing:hover, .xing:focus, .xing:active, .youtube:hover, .youtube:focus, .youtube:active, .facebook:hover, .facebook:focus, .facebook:active{
	border: 0 solid transparent; 
	margin: 0;
	padding: 6px 12px 6px 12px; /* up, right, down, left */
  color: transparent;
	background-size: 30px;
  text-decoration: none;
}
/***** End social media *****/

/***** table of content *****/
.TOC a{font-size: 1.1em;}
li ul.TOC 	  { margin:0 1.5em;}
ul.TOC   	    { margin: 0 0 1.5em 2em; 
 							padding:0 ;
	  					list-style-type:  disc;}
ul.TOC ul			{ list-style-type: circle;
							margin: 0 1.5em;} /* second level */
ul.TOC ul ul	{ list-style-type: square;
							margin: 0 1.5em;} /* third level */
/**** End table of content *****/


/***** Hover boxes on top of a text element *****/
.tips a  {
	color:  #00afeb; /* NANOblue */
	font-style: normal;
	font-size: 100%;
  text-decoration: none;
}
.tips a:hover {
	border-bottom: 1px solid #f4f3f4; /* NANOgrey */ 
  cursor: default;
  /* text-decoration: none; */
} 
.tips a em {display: none;}
.tips a:hover em {
	display: block;
	position: absolute; 
	left: 20%;
	width: 300px;
	padding: 5px;
	margin: 10px;
	z-index: 100; /* Specify a stack order in case you're using a different order for other elements */
	color: #FFFFFF; /* white */
  background-color: #00afeb; /* NANOblue */
  /* background-color: rgba(0,0,0,0.5); /* Black background with opacity */
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	border: 3px solid #00afeb; /* NANOblue */
	text-decoration: none;
}
/***** End Hover boxes *****/

/* ---------------------------------- figures & tables & code --------------------------------------- */

/***** figures *****/
.NSfigure {
		text-align:center;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0px;
    margin-right: 0px;
    display: block;
    counter-increment: CounterFig;  /* figure Counter */
  counter-reset: Subfig; /* sub fig counter */
}
.NSfigure img {
	/*  width:100%;*/ /* seems to create more trouble, as figures within tables blow up */
}
.NSfigure figcaption{
  display: block;
	text-align: center;
  font-style: italic;
  font-size: 90%;
}
/* sub-figures */
.NSfigure figure{
	  margin: 5px;
  counter-increment: 0;
}
/* sub-tables environment */
.NSfigure table{
	margin: auto;
}
.NSfigure td{
	vertical-align: top;
}
.NSfigure caption{
  caption-side:bottom;
  display: block;
	text-align: center;
  font-style: italic;
  font-size: 90%;
}
.NSfigure figcaption::before {/* figcaption */
    content: "Figure " counter(CounterFig) ": ";
}
.NSfigure caption::before {/* figcaption */
    content: "Figure " counter(CounterFig) ": ";
}

.NSfigure figure figcaption::before {/* sub fig enumeration */
  counter-increment: Subfig;
  content: counter(CounterFig) "." counter(Subfig) ": ";
}

/***** End figures *****/


/***** tables *****/
.NSTable {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border-collapse: collapse;
	width: 100%;
	counter-increment: CounterTab;/* table Counter */
}
.NSTable td {
	border: 1px solid #ddd;
  text-align: left;
	padding: 4px;
}
/* .NSTable tr:nth-child(odd){background-color: #F2F2F2;} /* for alternating row colors light gray*/ 
/*.NSTable tr:hover {background-color: #ddd;} */
.NSTable th {	/* header */
	border: 1px solid #ddd;
  padding: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  text-align: center;
  background-color: #00afeb; /* NANOblue */
  color: #FFFFFF; /* white */
}
.NSTable caption{
	  text-align: center;
  	font-style: italic;
    font-size: 90%;
}
.NSTable caption::before {/* table caption */
	content: 'Table ' counter(CounterTab) ': ';
}

/*Tables that scroll to side on smaller devices */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.responsive-table {
  width: 100%;
  min-width: 300px; /* oder je nach Inhalt */
  border-collapse: collapse;
  table-layout: fixed;
}
@media (max-width: 600px) {
  .responsive-table {
    min-width: 100vw;
  }
}

/***** End tables *****/

/***** NS code environment *****/
.NScode {
    counter-increment: CounterLists;/* code Counter */
    counter-reset: SubCode;/* sub code Counter */
}
.NScode figcaption{
	text-align: center;
	font-style: italic;
  font-size: 90%;
}
.NScode figcaption::before { /* code caption */
    content: "Code " counter(CounterLists) ": ";
}
.NSfigure .NScode figcaption::before {/* sub Code-fig enumeration */
  counter-increment: Subfig;
  content: counter(CounterFig) "." counter(Subfig) " Code " counter(CounterLists) ": ";
}
.NScode figure figcaption::before {/* sub code enumeration */
  counter-increment: SubCode;
  content: counter(CounterLists) "." counter(SubCode) ": ";
}
.NScode table {
	margin-left: 0;
}
.NScode ol, ol.NScode {
	font-style: italic;
	border: 3px solid;
	margin: 0px -40px 0px -40px; /* up, right, down, left */
	padding: 15px 15px 15px 23px;	/* up, right, down, left */
	background-repeat: no-repeat; 
	background-position: 0px center;
	background-color: #f4f3f4; /* NANOgrey */ 
  counter-reset: CodeItems;
  list-style-type: none;
}
.NScode ol li, ol.NScode li {
	background-color: #FFFFFF; /* white */
  padding: 0px 3px 0px 3px;	/* up, right, down, left */
  text-align: left; 
  position: relative;
}
.NScode ol > li::before, ol.NScode > li::before {
  position: absolute;
  left: -2.05em;                 /* sits inside the 3.5em padding */
  width: 2em;
  text-align: right;
  counter-increment: CodeItems;
  content: counter(CodeItems) ". ";
}
.NScode ol ol, ol.NScode ol {
    counter-reset: CodeItems; 
}
/* belt-and-suspenders: if a code list lives inside NSList, make sure
   our code-numbering wins over any broad NSList rule */
.article-body ol.NSList .NScode ol > li::before,
.article-body ol.NSList ol.NScode > li::before {
  content: counter(CodeItems) ". ";
  counter-increment: CodeItems;
  font-weight: normal;
}

.gwl{
	color: #008080; /* DeScribe teal */
  font-size: 100%;
	font-style: italic;
}
.gwlB{ /* for special commands like include */
	color: #0000ff; /* DeScribe blue for include (for and else commands have a slightly different blue) */
  font-size: 100%;
	font-style: italic;
}
.gwlC{	/* for comments */
	color: #808080; /* DeScribe gray */
  font-size: 100%;
	font-style: italic;
}
.gwlS{	/* for comments */
	color:  #a52a2a; /* DeScribe brown */
  font-size: 100%;
	font-style: italic;
}
.cpp{
	color: #C0504D; /* ns accent red */
	font-size: 100%;
	font-style: italic;
}
/***** End NS Code environment *****/
/* ------------------------- End figures, tables and code ----------------------------- */

/***** arrow return to top *****/
.cd-top {
height: 35px;
width: 35px;
position: fixed;
z-index: 9999; /*highest possible layer to be always shown*/
bottom: 50vh;  
right: 10px;
display:inline-block; 
/* image replacement properties */
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
background-image: url(/hc/theming_assets/01K31AQ128Q5DSTRXJ9Y2ETHPW);
background-repeat: no-repeat center;
background-size: 100%;
visibility: hidden;
opacity: 0;
-webkit-transition: opacity .3s 0s, visibility 0s .3s;
-moz-transition: opacity .3s 0s, visibility 0s .3s;
transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
-webkit-transition: opacity .3s 0s, visibility 0s 0s;
-moz-transition: opacity .3s 0s, visibility 0s 0s;
transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
/* the button becomes visible */
visibility: visible;
opacity: 1;
}
.cd-top.cd-fade-out {
/* if the user keeps scrolling down, the button can set to a lower opacity to becomes less visible */
opacity: 1;
}
.no-touch .cd-top:hover {
background-color: #ffffff;
opacity: 1;
}
@media only screen and (min-width: 768px) {
.cd-top {
right: 2%;
bottom: 2%;
}
}
@media only screen and (min-width: 1024px) {
.cd-top {
height: 35px;
width: 35px;
right: 10px;
bottom: 50vh;
}
}
/***** End arrow return to top *****/


/***** Info boxes *****/
.Info-blocks-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 20px;
  align-items: flex-start;
}

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

.Info-blocks-lists-item {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  text-align: left;
  border-color:  #f4f3f4; /* NANOgrey */
  border-radius: 0px; /* to make round edges*/
  background-color: #FFFFFF; /* white */
  flex: 0 1 auto;
  flex-direction: column;
}

.Info-blocks-lists-itemBS {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  /* width: 279px; */
  text-align: left;
	/*	border: 3px solid; /*define width of border and color*/
  border-color:  #f4f3f4; /* NANOgrey */
  border-radius: 0px; /* to make round edges*/
  background-color: #FFFFFF; /* white */
  padding: 0px;
  margin: 8px 15px 8px 15px;  /* up, right, down, left */
  flex: 0 1 auto;
  flex-direction: column;
}

.Info-blocks-lists-item td{
	 /* define appearance of table entries*/
}

.Info-blocks-lists-item ul{
		list-style-type:  disc;
  	margin: 4px 8px 4px 30px; /* up, right, down, left */
}

.Info-blocks-lists-item li{
  margin: 0px 0px 4px 0px; /* up, right, down, left */
}

.Info-blocks-lists-item a {
	color:  #454444; /* black */
	font-style: normal;
	font-size: 100%;
  text-decoration: none;
}
.Info-blocks-lists-item a:hover, .Info-blocks-lists-item a:active, .Info-blocks-lists-item a:focus {
	color:  #00afeb; /* NANOblue */
  text-decoration: none;
 	border-bottom: 1px solid  #00afeb; /* NANOblue */
}
/***** End info boxes *****/

/***** category block *****/

.blocks-item-online, .blocks-item-printer {/* box around title and description on startpage */
	border: 3px solid #FFFFFF; /* white */
  border-radius: 0px; /* to make round edges*/
  background-color: #FFFFFF; /* white */
  box-sizing: border-box; /*???*/
  justify-content: center; /*???*/
  padding: 8px;
  flex: 0 1 auto;
  flex-direction: column;
  display: block;
 width: 240px; /* 2021-09-07 BS: */
}
.blocks-item-online {/* box around webinar */
  margin: 16px 50px 16px 50px; /* up, right, down, left */
  width: 640px;
}
.blocks-item-printer {/* first row of categories- printer */
  width: 300px;
}

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

.blocks-item-printer:hover, .blocks-item-printer:focus, .blocks-item-printer:active {
  background-color: $brand_color;
}

.blocks-item-printer:hover *, .blocks-item-printer:focus *, .blocks-item-printer:active * {
  color: $brand_text_color;
  text-decoration: none;
}

.blocks-item-online .Info-blocks-lists-item, .blocks-item-online .blocks-item{
  padding: 0px 0px 0px 0px;
	margin: -3px 12px -3px 12px; /* up, right, down, left */
  width: 250px;
}

.blocks-item-online .blocks-list{/* box around webinar */
  justify-content: space-between
}

@media (max-width: 768px) {
  .blocks-item-online .blocks-list {
    	justify-content: center
  };
}
@media (max-width: 768px) {
  .blocks-item-online .Info-blocks-lists-item, .blocks-item-online .blocks-item{
	margin: 3px 12px 3px 12px; /* up, right, down, left */
	}
}

/** Landing page images and printer icons to add into text **/
.blocks-item-online:hover, .blocks-item-online:focus, .blocks-item-online:active  {/* box around title and description on startpage*/
	border: 3px solid #00afeb; /* NANOblue */
}

.training, .webinar, .supportPortfolio, .sop, .pp_series, .qx_series, .qx_campaign, .mpo_series, .printer, .printing, .materials {
  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover;
  width: 150px;
  height: 100px;
  margin: auto;
}
.pp_series, .qx_series, .qx_campaign{
  width: 270px;
  height: 210px;
}
.mpo_series{
  width: 270px;
  height: 270px;
}
.printer, .printing, .materials {
  background-size: 60px;
  width: 60px;
  height: 70px;
}

.generalInfo, .publications {
  background-repeat: no-repeat;
  background-position: center; 
  background-size: 150px;
  width: 160px;
  height: 70px;
  margin: auto;
}

.training{background-image: url(/hc/theming_assets/01HZPEMG6YHVAXEM3ZVT1M4P90); }
.blocks-item:hover .training{background-image: url(/hc/theming_assets/01HZPEMG2K7GG7CFVSHCABJ3WK); }

.sop{background-image: url(/hc/theming_assets/01HZPEMFK2B3D0VHXST3EZ3FQ8); }
.blocks-item:hover .sop{background-image: url(/hc/theming_assets/01HZPEMFEVWJYCAAV6WX4RWKAC); }

.webinar{background-image: url(/hc/theming_assets/01HZPEMEVAQYEGSP6NW0B7FRB6); }
.blocks-item:hover .webinar{background-image: url(/hc/theming_assets/01HZPEMEQ9E1CWSJC19A0SY902); }
.Info-blocks-lists-item:hover .webinar{background-image: url(/hc/theming_assets/01HZPEMEQ9E1CWSJC19A0SY902); }

.supportPortfolio{background-image: url(/hc/theming_assets/01HZPEMF8NFZQ0Y0DKGS7A6KH3); }
.blocks-item:hover .supportPortfolio{background-image: url(/hc/theming_assets/01HZPEMF4GK6D0HAS0YBTAVRG6); }

.generalInfo{background-image: url(/hc/theming_assets/01HZPEMJDHME5T80A4E5EQPDVC); }
.blocks-item:hover .generalInfo{background-image: url(/hc/theming_assets/01HZPEMJ8HZKG9VEJSV1HBWAT9); }

.printing{background-image: url(/hc/theming_assets/01HZPEMB42VRPR6YVZHJ25X5D0); }
.blocks-item:hover .printing{background-image: url(/hc/theming_assets/01HZPEM97530PGE48EX04TT8FE); }

.materials{background-image: url(/hc/theming_assets/01HZPEMA73DR2ZR0ZD3YEHQ448); }
.blocks-item:hover .materials{background-image: url(/hc/theming_assets/01HZPEMA3D0PABF3PPX60GEDZ0); }

.publications{background-image: url(/hc/theming_assets/01HZPEMFWRJS0Z5GSG5M9A4GR8); }
.blocks-item:hover .publications{background-image: url(/hc/theming_assets/01HZPEMFS0RKAJYN412CAC24GV); }

.printer{background-image: url(/hc/theming_assets/01HZPEMB09G74K3XPMQ8X8TT0Z); }
.blocks-item:hover .printer{background-image: url(/hc/theming_assets/01HZPEM9ZHPDHRJDAEB1C1CNYM); }

.pp_series{background-image: url(/hc/theming_assets/01J422E1RQ36P8E4M4DQFC2T4R); }
.qx_series{background-image: url(/hc/theming_assets/01J422E2YJBZ2QSKFZP78GMEJF); }
.qx_campaign{background-image: url(/hc/theming_assets/01J422E411KGMKB0M84ASYXYHC); }
.mpo_series{background-image: url(/hc/theming_assets/01K35QMNY4VHSPV5M9582Z17Q4); }

/* FR: icons for printers to add into text */
#pp_series_icon, #qx_series_icon {
  border: 0px;
  width: 15px;
  height: 15px;
  background-size: cover;
  position: relative;
  margin: 0px 0px 0px 2px; 
}
#pp_series_icon, #pp_series_icon_e-learning {
  background-image: url(/hc/theming_assets/01J44APWYBMX4GESBCWSDVVTA2);
}
#qx_series_icon, #qx_series_icon_e-learning {
  background-image: url(/hc/theming_assets/01J44ANRAREY56YN693T21X7XS);
}
#pp_series_icon_e-learning, #qx_series_icon_e-learning {
  border: 0px;
  width: 50px;
  height: 50px;
  background-size: cover;
  position: relative;
  margin: 0px 3px 0px 0px; /* up, right, down, left */
  border-radius: 6px;
}
/** Landing page images and printer icons to add into text **/

/* BS: This is to highlight the icon of the online training and the tabel next to it */
.onlineTrainingDivBox
{border-style: solid; border-color: #FFFFFF;}
.onlineTrainingDivBox:hover
{border-style: solid;border-color: #00afeb;}

/* do not show all categories */
.blocks-item:nth-child(n+5){ /* 2021-09-07 BS: changed to display 4 icon per row on the homepage*/
   display:none;
}

/* title */
.blocks-item-title{
  text-align: center;
  display: table-cell; 
  position: relative;
  margin-bottom: 0;
  width: 100%;
  top: 4px;
}
.blocks-item-title-MPO{
  text-align: center;
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  top: 4px;
}

/***** End category blocks *****/

/***** Category pages *****/
.blocks-item-titleB{/* category title on category page*/
	text-align: left;
  margin: 0px 20px 0px 10px; /* up, right, down, left */
}
/* specific category titles on category page--> must be adjusted each time in 'category_page.hbs'*/
.icon1b, .icon2b, .icon3b, .icon4b, .icon5b{
  background-repeat: no-repeat;
  background-size: 50px;
  margin: 0px 20px 0px -48px; /* up, right, down, left */
  padding: 10px 0px 10px 58px; /* up, right, down, left */
	text-align: left;
	line-height: 40px;
}
.icon1b{background-image: url(/hc/theming_assets/01HZPEMB09G74K3XPMQ8X8TT0Z); }
.icon2b{background-image: url(/hc/theming_assets/01HZPEMA73DR2ZR0ZD3YEHQ448); }
.icon3b{background-image: url(/hc/theming_assets/01HZPEMB42VRPR6YVZHJ25X5D0); }
.icon4b{background-image: url(/hc/theming_assets/01HZPEM5SZ2YSME46XD9H9SSP6); }
.icon5b{background-image: url(/hc/theming_assets/01HZPEM51EAR179Z54P6S8AG7B); }

.article-list {/* on Category page, the article list */
  margin-top:  -25px; 
}

.section-empty{/* on Category page and section page, in case there are no articles, the 'empty' */
  padding: 4px 10px 4px 20px; /* up, right, down, left */
}
.section-empty a:hover { 
  color: #241d3b; /* NANOpurple; #f4f3f4; NANOgrey */ 
  text-decoration: none;
}
/***** End Category pages *****/

/***** Section pages *****/
.section-title{/* on section pages, the titles */
  margin: 0px 20px 0px 10px; /* up, right, down, left */
	text-align: left;
}

.article-article-list{/* on section page, the article list */
	border: 3px solid; /*define width of border and color*/
  border-color:  #f4f3f4; /* NANOgrey */
  padding: 0px;
  margin: 10px;
}
/***** End Section pages *****/


/***** article *****/

/* sidebar in article: (work in progress AaK) */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_sidebar_responsive */
/* https://www.sitepoint.com/community/t/need-help-to-put-the-sidebar-in-right-side/44439/2 */
/*
.right-sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  position: fixed;
  height: 100%;
  overflow: auto;
  right: 0
}

@media screen and (max-width: 700px) {
  .right-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
}
*/
.a-container{
  display: flex;
	flex-direction: column;
}
@media (min-width: 1224px) {
  .a-container {
    flex-direction: row;
  }
}
.a-sidebar{
  width: 200px;
	margin: 10px 10px 10px 10px; /* up, right, down, left */
	}
@media (min-width: 1224px) {
  .a-sidebar{
	margin: 0px 20px 0px 20px; /* up, right, down, left */
  flex: 0 1 18%;
	}
}
/***** End article *****/



/***** video player *****/
.videoStyle{
  width: 80%; /* image size */
  height: 80%; /* image size */
}
/***** End video player *****/

/***** hide role-specific tags *****/
/* to hide text unspecific */
.hide_str { display: none; }
.show_str { display: block; }

/*hide role-specific div html*/
div.anonymous, div.end_user, div.agent, div.manager {
  display: none;
}

/*hide role-specific section html*/
section.anonymous, section.end_user, section.agent, section.manager {
  display: none;
}

/*hide role-specific tabel html*/
table.anonymous, table.end_user, table.agent, table.manager {
  display: none;
}

/*hide tag specific div*/
.reviewonly {
  display: none;
}

/*hide tag specific div, expecially the e-learning for PP and QX users*/
.pp_series_user, .qx_series_user, .nanoscribe_user, .mpo_user {
  display: none;
}

/*hide tag specific div, software version based */
.nSQX_v424, .nSQX_v5 {
  display: none;
}

/* testing for BS  */
.SN564only, .BStest {
  display: none;
}
/***** End hide roll specific tags *****/

/***** not sure what this is, but leave it here *****/
.meta_data {/* to improve findability of NanoGuide  */
  display: none;
}  

.classInitialilization {
  background-color: $background_color;
  color: $text_color;
  font-family: $text_font;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

/***** End not sure *****/

/***** E-Learning *****/
/* 2023-07-05 FR: Progress bar for the e-learning course. */
.PPprogress {
  --per: calc(var(--step) / 21 * 100%);
  flex: 1;
  padding: 11px 17px;
  border-radius: 6px;
  background: linear-gradient(to right, #00afeb var(--per), #f4f3f4 var(--per));
  height: min-content;
}
.PPprogress::after {
  color: #ffffff;
  font-family: Helvetica;
  font-weight: bold;
  font-size: 16px;
  counter-reset: s var(--step);
  content: "Step " counter(s) " of 21";
}

.QXprogress{
  --per: calc(var(--step) / 17 * 100%); /* 14 linked articles + 3 quizzes */
  flex: 1;
  padding: 11px 17px;
  border-radius: 6px;
  background: linear-gradient(to right, #241d3b var(--per), #f4f3f4 var(--per));
}
.QXprogress::after{
  color: #ffffff;
  font-family: Helvetica;
  font-weight: bold;
  font-size: 16px;
  counter-reset: s var(--step);
  content: "Step " counter(s) " of 17"; /* 14 linked articles + 3 quizzes */
}

/* 2023-07-05 FR: Button to nevigate to the previous and next step for the e-learning course. */
/* 2024-08-26 FR: Changed from id to class based css and added support for QX buttons. */
a.e_learning_button, a.e_learning_button_QX{ /* General button used for the PPGT platform */
  color: #ffffff;  
  text-align: center;
  font-weight: bold;
  font-family: Helvetica;
  font-size: 14px;
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  background-color: #00afeb;
  display: block;
}
a.e_learning_button_QX{ /* Color change for the QX platform */
  background-color: #241d3b;  
}

/* 2020-06-26 BS: styling for questions in the test for the e-learning. */
div.TestQuestion {
  color:#f4f3f4;
  padding:10px;
  border-radius:5px;
  background-color: #00afeb;
  font-weight: bold;
}

/* Hide the browser's default checkbox */
.AnswerText input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.AnswerText {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-top: 7px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.AnswerText:hover input ~ .checkmark {
  background-color: #f4f3f4;
}

.checkmark {
  position: absolute;
  top: 5px;
  left: 5px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* When the checkbox is checked, add a nano-purple background */
.container input:checked ~ .checkmark {
  background-color: #241d3b;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.AnswerText input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.AnswerText .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*Bold text for "Additional information" in remake code of PP quizzes; FF_2025-08-05*/
.feedback {
  font-weight: bold;
}

/* highlight correct answer in a e-learning test START */
.HighlightCorrect2 {
  display:block;
  position:relative;
  padding-top:7px;
  padding-left:40px;
  padding-right: 10px;
  padding-bottom: 5px;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  border-radius:5px;
  border:2px solid #00afeb;
  animation:blinkingCorrect2 1.2s 2;
}

.HighlightCorrect2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

@keyframes blinkingCorrect2{
    0%{border-style: solid;
  border-color: #00afeb;
  border-radius: 5px;}
    49%{border-style: solid;
      border-color: #00afeb;
  border-radius: 5px;}
    60%{border-style: solid;
  border-color: transparent;
  border-radius: 5px;}
    99%{border-style: solid;
  border-color: transparent;
  border-radius: 5px;}
    100%{border-style: solid;
  border-color: #00afeb;
  border-radius: 5px;}
}

/* BS: highlight correct answer in a e-learning test END */

/* BS: highlight wrong answer in a e-learning test START */
.HighlightWrong {
  display:block;
  position:relative;
  padding-top:7px;
  padding-left:40px;
  padding-bottom: 5px;
  cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  animation:turningOrangeWrong 1.2s 2 forwards;
}

.HighlightWrong input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

@keyframes turningOrangeWrong{
    from {color: #00afeb;}
  to {color: #ef7d04;}
}

.HighlightWrong input:checked ~ .checkmark:after {
  display: block;
}

.HighlightWrong .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* BS: highlight wrong answer in a e-learning test END */

/***** End E-Learning *****/

/***** Webinar *****/
/*2020-12-17 AaK: webinar button for the learning article https://support.nanoscribe.com/hc/en-gb/articles/360014249779*/
.webinarbutton {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:22px;
  padding:6px 17px;
  border: none;
  text-align: center;
  background-color: #00afeb;
  /*background-color: 22a6d6#;*/
  color: #ffffff
  }

.webinarbutton a{
 color: #ffffff
}
/***** Webinar *****/

/* 2021-09-06 BS: element to separate icon into different sections on the hompage */
.dividerHomePage {
  width: 65%;
  border-bottom: solid 1px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

/***** Special Buttons *****/
/*2021-09-08 BS: buttons for a responsive overview table that redirect you to other part of the article*/
.tableButtonPurple {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:22px;
  padding:6px 17px;
  border: none;
  text-align: center;
  background-color: #4a5da7;
  color: white;
  }

.tableButtonPurple a:hover{
 color: #ffffff;
}

.tableButtonBlue {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:22px;
  padding:6px 17px;
  border: none;
  text-align: center;
  background-color: #00afeb;
  color: black;
  }

.tableButtonBlue a{
 color: black;
}
.tableButtonBlue a:hover{
 	border-bottom: 1px solid  #241d3b; /* NANOpurple */
}

.tableButtonDarkPurple {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:22px;
  padding:6px 17px;
  border: none;
  text-align: center;
  background-color: #241d3b;
  color: white;
  }


.tableButtonDarkPurple a{
 color: #ffffff;
}

/* FF 2025-06-10 : Background for the Progress Bar of PP E-Learning  */
.tableButtonDarkPurpleELearning {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:16px;
  padding:14px 14px;
  border: none;
  text-align: center;
  background-color: #241d3b;
  color: white;
  }

/* FF 2025-06-10 : Background for the Progress Bar of PP E-Learning  */
.tableButtonDarkPurpleELearning a{
 color: #ffffff;
}
.tableButtonDarkPurpleELearning a:hover{
 	border-bottom: 1px solid  #ffffff; /* white */
}

/* FF 2025-06-13 : Background for the Progress Bar of QX E-Learning  */
.tableButtonBlueELearning {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:16px;
  padding:14px 14px;
  border: none;
  text-align: center;
  background-color: #00afeb;
  color: white;
  }

/* FF 2025-06-13 : Background for the Progress Bar of QX E-Learning  */
.tableButtonBlueELearning a{
 color: #ffffff; /* white */
}
.tableButtonBlueELearning a:hover{
 	border-bottom: 1px solid  #ffffff; /* white */
}

.tableButtonOrange {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:22px;
  padding:6px 17px;
  border: none;
  text-align: center;
  background-color: #ef7d04;
  color: white;
  }

.tableButtonOrange a{
 color: #ffffff;
}

.tableButtonWhite, .tableButtonWhiteBorder {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:22px;
  padding:6px 17px;
  border: 1px solid #00afeb;
  text-align: center;
  background-color: white;
  color: #000000;
  }

.tableButtonWhiteBorder {
  border-color: #241d3b;
  font-size: 15px;
}

/* FR 2023-10-18 : Button for the print set selector
with the possibility to strikethrough text on click  */

.PSS_Button {
  -moz-border-radius:6px;
  -webkit-border-radius:6px;
  border-radius:6px;
  font-size:17px;
  padding:6px 17px;
  border: none;
  text-align: center;
  background-color: #241d3b;
  color: white;
  }
.PSS_Button_strikethrough{
  text-decoration: line-through;
}
/***** End Special Buttons *****/

/***** nanoArrow, legend and image-container (not sure what these classes do) *****/
/* 2021-09-08 BS: arrow icons */
.nanoArrowDown {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* 2021-09-14 BS: legend as caption */
/* https://www.codegrepper.com/code-examples/html/html+table+add+legend */

.legend { list-style: none; margin-left:30x;}
    .legend span { float: left; width: 20px; height: 20px; margin: 3px;}
    .legend {
             
  /* bring your own prefixes */
             transform: translate(0%, 100%);
     				 margin: auto;
            }
    /* your colors */
    .legend .orangeDot { background-color: #ef7d04;} /* NANOorange */
    .legend .purpleDot { background-color: #4a5da7; } /* NANObluetwo */
    .legend .blueDot { background-color: #00afeb; } /* NANOblue */
    .legend .darkPurpleDot{ background-color: #241d3b; } /* NANOpurple */

/* AB stuff for the metarecipe article */

.float-image-left {
    float: left;       /* Image floats to the left */
    margin-right: 20px; /* Spacing between the image and text */
    width: 330px;      /* Adjust width as needed */
    height: 275px;     /* Adjust height as needed */
}

.image-container img {
    display: inline-block;
    vertical-align: top; /* This ensures they align at the same level */
    margin-right: 10px; /* Optional: Adds some space between the images */
}
/***** End nanoArrow, legend and image-container *****/

/***** Video *****/
/* video container vimeo */
.VideoContainer{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.VideoContainer > div, .VideoContainer > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	  border: 0px solid;
}
/***** End Video *****/

/***** Transcript *****/
/* Transcript in scrolling box directly under the videos
added by FF on 2025-06-20 */
.transcript {
  margin-top: 20px;
  max-height: 200px;
  overflow-y: auto;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-top: 10px;
}
/* transcript-line (highlighting current text in interactive transcript below video); not in use */
.transcript-line {
  padding: 5px;
  cursor: pointer;
}
.transcript-line.active {
  background-color: #f4f3f4;
  font-weight: bold;
}
/***** End Transcript *****/

/***** Expandable & searchable content *****/

/*Quiz boxes for QX-Quiz; added by FF_2025-06-26*/
/* Quiz block container */
.quizBlock {
  border: 1px solid #00afeb;
  border-radius: 6px;
  background-color: #f8f6f8;
  padding: 10px;
  margin-bottom: 10px;
}

/* Question summary */
.quizBlock summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}

/* Arrow icon */
.quizBlock .quizArrow {
  display: inline-block;
  width: 1em;
  transition: transform 0.1s;
}

/* Answer text */
.quizBlock p {
  margin-top: 2px;
  margin-left: 3.5em;
  margin-bottom: 2px;
}

/*Transcript Boxes for videos; added by FF_2025-06-27*/
/* Transcript block container */
.transcriptBlock {
  padding: 10px;
  margin-bottom: 10px;
}

/* Question summary */
.transcriptBlock summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  color: #00afeb;
}

/* Arrow icon */
.transcriptBlock .quizArrow {
  display: inline-block;
  width: 1em;
  transition: transform 0.1s;
}

/* Answer text */
.transcriptBlock p {
  margin-top: 2px;
  margin-left: 2.3em;
  margin-right: 1.5em;
  margin-bottom: 2px;
}

/* Hidden, but searchable content that can be expanded like transcripts/quiz boxes (neutral styling) */
.showHide {
  margin-top: 20px;
  padding-top: 10px;
}

.showHideBlock {

  padding: 10px;
  margin-bottom: 10px;
}

/* Question summary */
.showHideBlock summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  color: #241d3b;
}

/* Arrow icon */
.showHideBlock .quizArrow {
  display: inline-block;
  width: 1em;
  transition: transform 0.1s;
}

/* abstract for all publications which is expandable and searchable */
.abstract {
  margin-top: 5px;
  padding-top: 5px;
}

.abstractBlock {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
.abstractBlock summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  color: #241d3b;
}
/* Abstract text */
.abstractBlock p {
  margin-left: 1.3em;
}
/* Arrow icon */
.abstractBlock .quizArrow {
  display: inline-block;
  width: 1em;
  transition: transform 0.1s;
}
/***** End Expandable & searchable content *****/

/***** Grid for responsive table layout of QX-Training article *****/

.grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 10px;
      padding: 20px;
    }

    .grid-section {
      padding: 15px;
      border-radius: 8px;
      border-color: #241d3b;
    }

    .grid-section h3 {
      margin-top: 0;
      font-size: 1.1em;
      color: #333;
    }

    .grid-links a {
      display: block;
      margin: 5px 0;
      padding: 10px;
      /*background-color: #007bff;*/
      color: white;
      text-decoration: none;
      border-radius: 5px;
      text-align: center;
    }

    .grid-links a:hover {
      background-color: #4a5da7;
    }

.grid-links .tableButtonBlue, .grid-links .tableButtonDarkPurple {
  font-size: 18px;
}

    @media (max-width: 768px) {
      .grid-container {
        grid-template-columns: 1fr;
      }
    }
/***** End Grid *****/