/* Style applicable regardless of device */

/* variables */
:root {
  --se-logo-green: #009530; /* not defined in web-ui css*/
}

header {
  height: auto;
  margin: 0;
}

body {
  visibility: hidden; /* Hide body initally to prevent flash of unstyled content */
}

se-app {
  background-color: var(--se-background-standard);
}

a {
  color: var(--se-secondary);
}
a:hover {
  text-decoration: underline;
}

.pagination-container {
  padding: 15px 0;
  margin-left: auto;
  margin-right: auto;
}

.header-top {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  height: 40px;
}
.header-top {
  display: none;
}
.header-mid-wrapper {
  background-color: #fff;
  margin: 0;
  padding: 0;
  height: auto;
}
.header-mid {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.header-icon {
  min-width: 235px;
  background-color: var(--se-primary);
  display: flex;
  justify-content: center;
}
.header-nav {
  width: 100%;
  padding-bottom: 8px;
  border-top: 1px solid #e7e6e6;
}
.header-mid .header-nav-top {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;

  padding-top: 8px;
}
#searchform {
  flex: 1;
  padding-left: 15px;
  padding-right: 23px;
}
#searchboxwrapper {
  width: 100%;
  display: flex;
  border: 1px solid var(--se-divider, #e6e6e6);
  background-color: white;
  padding: 0 3px 0 3px;
}
#searchboxwrapper input {
  flex: 1;
  height: 35px;
  border-style: none;
  font-size: medium;
  font-family: inherit;
  outline-width: 0;
  background-color: none;
}
input:-webkit-autofill {
  /*removes background color Chrome adds to the searchform field when user selects an autocomplete/stored-search value*/
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
#searchform-button {
  align-items: center;
  cursor: pointer;
  flex: 0 1 auto;
}

.mobile-nav-button {
  width: auto;
  position: absolute;
  top: 15px;
  right: 0px;
  padding-right: 10px;
}
.header-mid .header-nav-bottom {
  display: none;
}
.header-bottom-wrapper {
  margin: 0;
  padding: 0;
  background-color: var(--se-alternative-hover, #e6e6e6);
}
.header-bottom {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}
.header-bottom .version-selector-container {
  width: 100%;
}
select#productVersionSelector {
  border-color: var(--se-standard, #626469);
  border-radius: 3px;
}
.header-bottom .version-selector-container #version-selector {
  display: flex;
  align-items: flex-end;
  color: black;
  padding: 3px 20px 3px 10px;
  font-size: small;
  line-height: 22px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.header-bottom .version-selector-container #version-selector #prerelcheckbox {
  float: right;
}
.header-bottom .version-selector-container #version-selector span {
  display: none;
}
.header-bottom .version-selector-container .prereleasedVersions select {
  color: red;
}
.header-bottom .version-selector-container #version-selector #version {
  order: 0;
}
.header-bottom .version-selector-container #version-selector #pre-release {
  order: 1;
}

se-form-field .ff-wrapper-input {
  max-width: none;
}

.body-container {
  display: flex;
  flex-direction: column;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

/* === Mobile Elements === */
.mobile-nav-container {
  position: absolute;
  top: 119px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
}
.mobile-nav-menu {
  width: 0;
}
.show {
  transition: 0.3s ease-in;
  width: 100%;
}
.mobile-nav-container se-list {
  --se-list-group-font-weight: normal;
}

.mobile-nav-menu-lang {
  height: 32px;
  width: 300px;
  display: flex;
  align-items: center;
  padding-left: 8px;
}
.mobile-nav-menu-lang:hover {
  background-color: #e6e6e6;
}
.mobile-nav-menu-lang select#selectedLanguage {
  border: none;
  width: 250px;
  background: none;
  font-size: medium;
  font-family: Nunito, Roboto, monospace;
  font-weight: 300;
  color: #0f0f0f;
  margin-left: 8px;
}
.mobile-nav-menu-lang select#selectedLanguage:focus {
  outline: none;
}

/* Body */
.home-brand-image {
  display: none;
  min-height: 230px;
}

.home-login-note {
  margin-top: 15px;
  color: var(--se-secondary);
}

.home-section-container {
  overflow-y: hidden;
}
.home-section-container p {
  font-size: small;
}
.home-section-container a {
  text-decoration: none;
  color: black;
  -webkit-tap-highlight-color: transparent;
}
.home-section-body {
  position: initial;
  overflow: hidden;
  padding: 10px;
}
.home-section-body .section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding-bottom: 10px;
}
.home-section-body .section-icon img {
  height: 100%;
}
.home-section-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 10px 10px 0;
  color: var(--se-secondary);
}

.home-links-container {
  font-size: small;
  position: relative;
}
.home-links-container ul {
  padding-top: 5px;
}
.home-links-container li {
  padding-bottom: 5px;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  padding-top: 5px;
  justify-content: space-between;
  align-items: stretch;
}
.home-links-container li:last-child {
  border-bottom: none;
}
.home-links-container a {
  margin-right: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.home-links-container li.prereleased > a {
  color: red;
}
.home-links-container li img {
  width: 17px;
}

.search-container {
  display: block;
  overflow-x: hidden;
}
.desktop-search-filter-text {
  margin: 0 0 5px 5px;
}
.search-filters-mobile {
  width: auto;
  margin-bottom: 10px;
  background-color: var(--se-alternative);
}
.search-filters-mobile .search-filter-category {
  width: auto;
  border-color: transparent;
  background-color: var(--se-alternative);
}
.search-filters-mobile se-list {
  background-color: var(--se-alternative);
}
.search-filters-mobile se-list-item,
.search-filters-mobile se-list-group {
  background-color: white;
}
.search-filters-mobile input {
  margin-right: 9px;
}
.search-result {
  height: auto;
  width: auto;
  padding: 10px;
  background-color: var(--se-alternative);
  border: 1px solid var(--se-divider, #e6e6e6);
}

.search-result div {
  display: inline-block;
  padding: 3px 0 5px 0;
}
.search-result img {
  vertical-align: middle;
  margin-right: 4px;
  height: 17px;
}
.search-result span.informationtype {
  font-size: 13px;
  color: var(--se-standard, #626469);
}
.search-result p {
  font-size: 13px;
}
.search-result .result-title-classification {
  display: flex;
  justify-content: space-between;
}
.search-result .result-title-classification h5.prereleased > a {
  color: red;
}
.result-classification {
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 9px;
  width: fit-content;
}
.result-classification .resultclassificationprivilege {
  padding: 4px 10px;
  border: 1px solid red;
  color: var(--se-primary, #6fc067);
}
.search-result-container {
  padding-top: 10px;
  height: auto;
}
.search-result-info {
  color: var(--se-standard, #626469);
}
#search-result-term {
  float: left;
  margin-left: 2px;
  font-size: small;
}
#search-result-count {
  float: right;
  margin-right: 2px;
  white-space: nowrap;
  font-size: small;
}

.mobile-search-filters-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2%;
  width: auto;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--se-divider, #e6e6e6);
  background-color: var(--se-alternative);
}
.mobile-search-filters-button .filter-text {
  padding: 4px 4px 4px 12px;
}
.mobile-search-filters-button se-icon {
  cursor: pointer;
}
.active {
  color: var(--se-alternative);
  background-color: #626469;
}
.button-active {
  transform: rotate(180deg);
}

.pagination-container {
  width: 100%;
}
.pagination-container > se-pagination {
  margin: 0 auto;
  display: table;
}

/* category page */
.category-container {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 2% 2% 0 2%;
}
.category-title-top,
.category-title {
  display: inline-flex;
  align-items: center;
  width: -webkit-fill-available;
}
.category-title-top img {
  height: 45px;
  padding-right: 1%;
}
.category-title img {
  height: 35px;
  padding-right: 1%;
}
.category-nav-container-top {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: auto;
  margin-top: 1%;
}
.category-nav-container {
  display: flex;
  flex-direction: column;
  margin-top: 2%;
  height: auto;
}
.category-nav-container-top .category-section {
  margin-bottom: 13px;
  flex: 0 1 auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.category-nav-container-top .category-section-header,
.category-section-header {
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--se-divider, #e6e6e6);
  background-color: var(--se-alternative);
}
.category-section-header {
  height: 35px;
  justify-content: space-between;
  align-items: center;
}
.category-section .category-section-header .title {
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.category-section-header img {
  height: 30px;
}

.category-section .category-section-header div.navigate {
  text-align: end;
  margin-right: 5px;
  width: 40%;
}
.category-section .category-section-header .navigate a {
  padding: 0;
  font-size: 15px;
}

.category-section-header-title {
  font-size: 14px;
  padding-left: 13px;
  margin-right: auto;
  line-height: 17px;
}
.category-section-header se-icon {
  margin-right: 0;
}
.child-button {
  display: flex;
  align-items: center;
}
.category-section-children {
  display: none;
}
.category-section li {
  background-color: var(--se-alternative);
  font-size: medium;
  padding: 3px 10px;
  border-left: 1px solid var(--se-divider, #e6e6e6);
  border-right: 1px solid var(--se-divider, #e6e6e6);
  border-bottom: 1px solid var(--se-divider, #e6e6e6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-section li .navigate {
  display: flex;
}
.category-section .category-section-children a {
  display: block;
  width: 100%;
}

/* -- FOOTER -- */
footer {
  margin-top: auto;
  color: var(--se-alternative);
  background-color: var(--se-primary);
}
footer .footer-container {
  width: auto;
  max-width: 1180px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  font-size: small;
  padding: 8px 20px 8px 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer-container span.links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 10px;
}

footer .links a {
  padding-right: 15px;
  padding-bottom: 3px;
  color: white;
}
footer .copyright {
  width: 190px;
}

/* == SCREEN, width > 43em(688px) [tablet] == */
@media (min-width: 43em) {
  /* -- HEADER -- */
  .header-top {
    display: block;
  }
  .header-top #language_selection > div {
    float: left;
    display: flex;
    align-items: center;
    height: 40px;
    margin-left: 10px;
  }
  .header-top #language_selection > div > select {
    font-size: medium;
    font-family: Nunito, Roboto, monospace;
    font-weight: 300;
    color: #0f0f0f;
    border: none;
    background: none;
  }
  .header-top #language_selection > div > select:focus > option:hover {
    background-color: var(--se-alternative-hover);
    outline: none;
  }
  .header-top #user_profile {
    float: right;
  }
  .header-top #user_profile a {
    color: var(--se-background-alternative-contrast, #0f0f0f);
  }
  .header-top #user_profile a:hover {
    text-decoration: none;
  }
  .header-top #user_login {
    float: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 40px;
    margin-right: 10px;
  }
  .header-mid-wrapper {
    box-shadow: 0 2px 10px 0 rgb(51 51 51 / 15%);
  }

  .header-bottom .version-selector-container #version-selector {
    justify-content: flex-end;
  }

  .header-mid .header-nav-bottom {
    display: none;
  }
  .header-bottom .version-selector-container #version-selector {
    align-items: center;
    flex-direction: row;
  }
  .header-bottom .version-selector-container #version-selector span {
    display: inline-block;
    margin: 0 10px;
    color: var(--se-standard, #626469);
  }
  .header-bottom .version-selector-container #version-selector #version {
    order: initial;
  }
  .header-bottom .version-selector-container #version-selector #pre-release {
    order: initial;
  }

  .content-wrapper {
    flex-direction: row;
    align-items: start;
    width: 100%;
    justify-content: space-between;
    display: flex;
  }
  .mobile-nav-button {
    position: static;
    width: auto;
    padding-right: 10px;
  }

  #searchform {
    padding-left: 0px;
    padding-right: 15px;
  }
  .header-icon {
    flex: 0 0 21%;
    display: flex;
    justify-content: center;
  }
  .header-nav {
    flex: 1 0 0;
    padding-top: 6px;
    padding-left: 15px;
    border-top: none;
  }
  .mobile-nav-menu-divider,
  .mobile-nav-menu-lang,
  .mobile-nav-menu-profile,
  .mobile-nav-menu-manage,
  .mobile-nav-menu-logout {
    display: none;
  }

  /* -- BODY -- */
  .mobile-nav-container {
    top: 110px;
  }

  /* Desktop - Home, Branding image */
  .home-brand-image {
    display: block;
  }
  .home-brand-image .content {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    padding-top: 15px;
    color: var(--se-alternative);
    background-color: rgba(61, 205, 88, 0.6);
  }
  .home-brand-image .text {
    padding: 10px 0 10px 15px;
    background-color: var(--se-primary, #3dcd58);
  }

  .home-section-container {
    width: 75%;
  }
  .home-links-container {
    width: 25%;
    font-size: small;
    position: absolute;
    right: 0;
    top: 0;
  }
  .mobile-search-filters-button {
    display: none;
  }

  .search-container {
    display: block;
    overflow-x: hidden;
    margin: 0 1%;
  }
  .search-filters {
    float: left;
    width: 25%;
  }
  .search-filters input {
    margin-right: 9px;
  }
  .search-filters list-item {
    background-color: red;
  }
  .search-filter-category {
    margin-bottom: 15px;
    width: auto;
    border: 1px solid var(--se-divider, #e6e6e6);
  }
  .search-result-container {
    float: right;
    width: 72%;
    height: auto;
    padding-top: 16px;
  }

  /* category page */
  .category-container {
    display: block;
    overflow-x: hidden;
  }
  .category-title-top {
  }
  .category-title {
    float: right;
    width: 72%;
  }
  .category-nav-container-top {
    flex-direction: row;
  }
  .category-nav-container-top .category-section-header-title {
    font-size: 15px;
    padding-left: 8px;
    margin-right: auto;
  }
  .category-nav-container-top .category-section li {
    background-color: var(--se-alternative);
    font-size: 13px;
    padding: 5px 10px;
    border-left: 1px solid var(--se-divider, #e6e6e6);
    border-right: 1px solid var(--se-divider, #e6e6e6);
    border-bottom: 1px solid var(--se-divider, #e6e6e6);
  }
  .category-nav-container-top .category-section {
    margin-bottom: 13px;
    flex: 0 1 auto;
    width: 48%;
  }
  .category-nav-container-top .category-section-header {
    height: 35px;
  }
  .category-nav-container {
    float: right;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1%;
    height: auto;
    width: 72%;
  }
  .category-section-header-title {
    font-size: 14px;
    line-height: 17px;
    padding-left: 0px;
    margin-right: auto;
  }
  .category-section li {
    background-color: var(--se-alternative);
    font-size: 12px;
    padding: 3px 10px;
    border-left: 1px solid var(--se-divider, #e6e6e6);
    border-right: 1px solid var(--se-divider, #e6e6e6);
    border-bottom: 1px solid var(--se-divider, #e6e6e6);
  }
  .category-section {
    background-color: transparent;
    margin-bottom: 7px;
    flex: 0 1 auto;
    width: 48%;
    margin-right: 1%;
  }
  .category-section-header {
    padding: 8px;
  }

  /* -- FOOTER -- */
  footer .footer-container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  .footer-container span.links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 0px;
  }
}

/* == SCREEN, width > 75em(1200px) [desktop] == */
@media (min-width: 75em) {
  .header-top #language_selection > div {
    margin-left: 0px;
  }
  .header-top #user_login {
    margin-right: 0px;
  }

  /* === Mobile Elements === */
  .mobile-nav-button {
    display: none;
  }
  #searchform {
    padding-left: 0px;
    padding-right: 8px;
  }
  .header-icon {
    flex: 0 0 23%;
    height: 88px;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-nav {
    flex: 0 0 75%;
    max-width: 75%;
    height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* === Desktop Elements === */
  /* Desktop - Navigation Container */
  .header-mid .header-nav-bottom {
    display: block;
  }

  .header-mid-wrapper {
    height: 110px;
  }
  /* Desktop - Navigation, Megamenu */
  ul.desktop-nav-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .desktop-nav-menu > li {
    flex: 0 0 auto;
    width: auto;
    padding-right: 25px;
    padding-left: 25px;
    align-items: center;
    height: 30px;
    border-bottom: 4px solid #fff;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition-duration: 0.5s;
  }
  .desktop-nav-menu > li > a {
    text-decoration: none;
    color: var(--se-logo-alternative);
  }
  .desktop-nav-menu > li > se-icon {
    vertical-align: middle;
  }
  .desktop-nav-menu > li:hover {
    border-bottom: 4px solid var(--se-primary);
  }
  .megamenu {
    display: none;
  }
  .header-mid .desktop-nav-menu > li.parent:hover + .megamenu,
  .megamenu:hover {
    position: absolute;
    top: 150px;
    left: calc((100% - 1180px) / 2);
    width: 1180px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 3;

    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
    background-color: var(--se-alternative);
    font-size: 12px;
    line-height: 18px;
    color: var(--se-standard);
  }
  .megamenu h6 {
    margin-bottom: 10px;
    color: var(--se-secondary);
  }
  .megamenu > div {
    flex-grow: 1;
    padding: 10px;
    margin-right: 10px;
    height: auto;
  }
  .megamenu > div.break {
    flex-basis: 100%;
  }
  .megamenu > div > ul {
    column-count: 2;
  }
  .megamenu > div > ul a {
    color: var(--se-standard);
  }
  .megamenu > div > ul a:hover {
    color: var(--se-secondary);
  }
  .megamenu ul > li > ul {
    margin-left: 10px;
  }
  .megamenu ul > li > ul > li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .megamenu > div > ul > li > a {
    font-weight: bold;
  }

  .category-nav-container-top .category-section,
  .category-section {
    width: 32%;
  }
}
