@charset "UTF-8";
/*
lk@nuxeo.com - nuxeo @ 2012 July
mhuang@nuxeo.com - nuxeo @ 2017 November
agoodricke@nuxeo.com - nuxeo @ 2021 April
*/
:root {
  --motion-speed: 0.2s;
  --motion-speed-slow: 0.4s;
  --motion-speed-notice: 0.8s;
}
@media (prefers-reduced-motion) {
  :root {
    --motion-speed: 0s;
    --motion-speed-slow: 0s;
    --motion-speed-notice: 0s;
  }
}

/* Typography */
html,
body,
input,
textarea {
  color: #000;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
@supports (font-variation-settings: normal) {
  html,
  body,
  input,
  textarea {
    font-family: "Inter var", sans-serif;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.5;
  -webkit-margin-after: 1rem;
  margin-block-end: 1rem;
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

.h1,
h1 {
  font-size: 1.875rem;
  line-height: 1.2;
}

.h2,
h2 {
  font-size: 1.5rem;
}

.h3,
h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.h4,
h4 {
  font-size: 1.125rem;
}

.h5,
h5 {
  font-size: 1rem;
}

strong,
.strong {
  font-weight: 600;
}

a {
  transition: opacity var(--motion-speed) ease;
}
a.more,
a .more {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
a.more::after,
a .more::after {
  content: "→";
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  transition: padding-left 0.4s ease, padding-right 0.4s ease;
}
a.more:hover::after,
a .more:hover::after {
  padding-left: 0.6rem;
  padding-right: 0;
  transition: padding-left 0.2s ease, padding-right 0.2s ease;
}
a:focus,
a:hover {
  opacity: 0.7;
}

input[type="submit"],
input[type="button"],
.button {
  background: #06f;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  padding: 0.375rem 1.25rem;
  text-decoration: none;
  transition: background-color var(--motion-speed) ease;
}
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
.button:hover,
.button:focus {
  background-color: #0058db;
  opacity: 1;
}
input[type="submit"].cancel,
input[type="button"].cancel,
.button.cancel {
  background: #fff;
  color: #000;
  box-shadow: inset 0px 0px 0px 1px currentColor;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5625rem;
  -webkit-margin-before: 0.5625rem;
  margin-block-start: 0.5625rem;
}

.tag {
  background: transparent;
  border: 1px solid currentColor;
  color: #000;
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.25rem 0.375rem;
  text-align: center;
  text-transform: uppercase;
  transition-duration: var(--motion-speed);
  transition-property: background, color;
  transition-timing-function: ease;
}
.tag.tag--sub-additional {
  color: #8400ff;
}
.tag.tag--sub-required {
  color: #06f;
}
.tag.tag--sub-no {
  color: #4a4a4a;
}
.tag.tag--deprecated {
  color: #f04;
}
.tag.tag--supported {
  color: #2dcb48;
}
.tag.tag--unsupported {
  color: #ff9e00;
}
.tag.tag--category {
  color: #4a4a4a;
}

/* Colours */
.is-bg-black {
  background-color: #000;
}

.is-bg-grey {
  background-color: #f5f5f5;
}

.is-bg-black {
  color: #fff;
}

.is-blue {
  color: #06f;
}

/* Layout */
* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.limit-w {
  max-width: 64rem;
  margin-inline: auto;
}

.pad,
.pad-top {
  padding-top: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .pad,
  .pad-top {
    padding-top: 2rem;
  }
}

.pad,
.pad-bottom {
  padding-bottom: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .pad,
  .pad-bottom {
    padding-bottom: 2rem;
  }
}

.pad-w {
  padding-inline: 2rem;
}

.container {
  margin-top: 57px;
}

.main {
  display: grid;
  grid-template: "sidebar content" / minmax(6.25rem, 12.5rem) auto;
  gap: 3.125rem;
  min-height: 60vh;
}

/* Tooltips */
.tooltipped {
  position: relative;
  border-bottom: 1px dotted black;
  cursor: help;
}
.tooltipped::after {
  background: #24292e;
  border: 0;
  border-radius: 3px;
  color: #fff;
  content: attr(aria-label);
  font-size: 0.8rem;
  letter-spacing: normal;
  padding: 5px 8px;
  pointer-events: none;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: pre;
  word-wrap: break-word;
  z-index: 1000000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 35em;
  word-wrap: break-word;
  white-space: pre-line;
  border-collapse: separate;
}
.tooltipped::before {
  border: 5px solid transparent;
  color: #24292e;
  content: "";
  height: 0;
  pointer-events: none;
  width: 0;
  z-index: 1000001;
}
.tooltipped::before,
.tooltipped::after {
  display: inline-block;
  position: absolute;
  opacity: 0;
  transition-property: opacity;
  transition-duration: var(--motion-speed-slow);
  transition-timing-function: ease;
  transition-delay: var(--motion-speed-slow);
}
.tooltipped:hover::before,
.tooltipped:hover::after,
.tooltipped:active::before,
.tooltipped:active::after,
.tooltipped:focus::before,
.tooltipped:focus::after {
  opacity: 1;
  transition-delay: 0s;
}
.tooltipped.tooltipped-ne::after {
  bottom: 100%;
  margin-bottom: 6px;
  margin-left: -30px;
  left: 50%;
}
.tooltipped.tooltipped-ne::before {
  border-top-color: #24292e;
  bottom: auto;
  margin-right: -6px;
  right: 50%;
  top: -7px;
}
.tooltipped.tooltipped-w::after {
  right: 100%;
  bottom: 50%;
  margin-right: 6px;
  transform: translateY(50%);
  right: 100%;
}
.tooltipped.tooltipped-w::before {
  top: 50%;
  bottom: 50%;
  left: -7px;
  margin-top: -6px;
  border-left-color: #24292e;
}
.tooltipped.tooltipped-w.tooltipped--light::after {
  background: #fff;
  color: #3c3b3b;
}
.tooltipped.tooltipped-w.tooltipped--light::before {
  border-left-color: #fff;
  color: #fff;
}

/* Hero Banner */
.hero-banner {
  background-color: #000;
  background-image: url("../images/x-galaxy.min.svg");
  background-size: 20%;
  color: #fff;
  text-align: center;
  padding-block: 4.8125rem;
}

.bg-fade {
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 50px 25px rgba(0, 0, 0, 0.6);
  display: inline-block;
}

/* Sidebar */
.section-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-block: 1.375rem 0.5rem;
  order: -2;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
}
.sidebar-section:not(.sidebar-section--limit) .show-hide {
  display: none;
}
.sidebar-section a {
  color: #000;
  display: block;
  font-size: 0.875rem;
  padding-block: 0.5rem;
  text-decoration: none;
  transition: opacity var(--motion-speed) ease,
    height var(--motion-speed-slow) ease, padding var(--motion-speed-slow) ease;
  overflow: hidden;
  order: 10;
}
.sidebar-section a:hover,
.sidebar-section a:focus {
  opacity: 0.7;
}
.sidebar-section a.active {
  color: #06f;
}
.sidebar-section a:nth-of-type(n + 7):not(.active),
.sidebar-section.has-active a:nth-of-type(n + 6):not(.active) {
  height: 0;
  padding: 0;
  opacity: 0;
}
.sidebar-section:first-of-type .section-title {
  -webkit-padding-before: 0;
  padding-block-start: 0;
}
.sidebar-section .show-hide {
  order: 11;
}
.sidebar-section input.show-hide.show-hide {
  position: absolute;
  left: 0;
  opacity: 0.01;
  width: 0;
  height: 0;
  display: inline-block;
  border: none;
}
.sidebar-section input.show-hide.show-hide + label.show-hide {
  font-size: 0.75rem;
  cursor: pointer;
  padding-block: 0.5rem;
  text-decoration: underline;
}
.sidebar-section input.show-hide.show-hide + label.show-hide::before {
  content: "↓";
  display: inline-block;
  font-size: 0.875rem;
  vertical-align: top;
}
.sidebar-section input.show-hide.show-hide + label.show-hide::after {
  content: " More";
}
.sidebar-section input.show-hide.show-hide:checked + label.show-hide::before {
  content: "↑";
  vertical-align: baseline;
}
.sidebar-section input.show-hide.show-hide:checked + label.show-hide::after {
  content: " Fewer";
}
.sidebar-section input.show-hide.show-hide:checked ~ a {
  height: 2.3125rem;
  padding-block: 0.5rem;
  opacity: inherit;
}
.sidebar-section input.show-hide.show-hide:checked ~ a:hover,
.sidebar-section input.show-hide.show-hide:checked ~ a:focus {
  opacity: 0.7;
}
.sidebar-section input.show-hide.show-hide:focus + label {
  outline: 1px dotted currentColor;
  outline-offset: 2px;
}

/* Search */
.search-submit {
  -webkit-margin-after: 2rem;
  margin-block-end: 2rem;
  position: relative;
}
.search-submit input[type="search"] {
  display: block;
  font-size: 0.75rem;
  padding: 0.625rem 0.625rem 0.625rem 3.5rem;
  width: 100%;
}
.search-submit input[type="search"]:focus {
  outline: 1px solid #000;
}
.search-submit button[type="submit"] {
  background: transparent;
  cursor: pointer;
  height: 100%;
  left: 0;
  -webkit-padding-before: 0.125rem;
  padding-block-start: 0.125rem;
  padding-inline: 1.3125rem;
  position: absolute;
  top: 0;
}
.search-submit button[type="submit"]:hover {
  opacity: 0.7;
}
.search-submit button[type="submit"]:focus {
  outline: 1px dotted #000;
}

.search-bar {
  -webkit-margin-after: 2rem;
  margin-block-end: 2rem;
}
.search-bar input[type="checkbox"] {
  vertical-align: sub;
}
.search-bar input[type="checkbox"] + label {
  font-size: 0.875rem;
  -webkit-padding-start: 0.6875rem;
  padding-inline-start: 0.6875rem;
}

/* Hotfixes */
.hotfixes {
  font-size: 1.125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5625rem;
}
.hotfixes a {
  text-decoration: none;
  padding: 0.4375rem 0.625rem;
  border: 1px solid #dadada;
  color: #4a4a4a;
  white-space: nowrap;
}
.hotfixes a.selected {
  background: #e5f1ff;
  border-color: #e5f1ff;
  color: #06f;
}

/* Featured */
.featured-grid {
  gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
}

.package--featured {
  box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.06);
  align-items: center;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  padding: 1.625rem 1.875rem;
  text-align: center;
  text-decoration: none;
  transition-duration: var(--motion-speed);
  transition-property: box-shadow, opacity;
  transition-timing-function: ease;
}
.package--featured:hover,
.package--featured:focus {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.package--featured:hover {
  opacity: 0.7;
}
.package--featured .package-desc {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Package Listing */
.result-summary {
  font-size: 1.125rem;
}

.package-grid {
  gap: 1.875rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
}

.package--item {
  display: flex;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  text-decoration: none;
}
.package--item a {
  color: #000;
  text-decoration: none;
}
.package--item .package-title {
  font-weight: 600;
}
.package--item .package-author {
  font-weight: 600;
}
.package--item .package-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.package--item .package-extra {
  margin-block: 0.3125rem;
}
.package--item .package-extra a {
  text-decoration: underline;
}
.package--item .package-author,
.package--item .package-owner,
.package--item .package-description,
.package--item .package-extra {
  font-size: 0.875rem;
}

.contribute-link {
  text-align: center;
  color: #000;
  text-decoration: none;
}

/* Footer */
footer {
  background: #000;
  padding-block: 5.4375rem 12.0625rem;
}
footer a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.footer-icons {
  display: flex;
  flex-direction: column;
}

/*
.footer-icon {
  font-size: $logo-size;
  height: $logo-size;
  line-height: 1;

  a {
    display: inline-block;
    line-height: 1;
  }

  svg {
    fill: currentColor;
    height: 1em;
    width: auto;
  }

  .nsvglogo {
    fill: $c-white;
  }

  .nsvglogo-x {
    fill: $c-green;
  }
}
*/
.footer-icon {
  display: block;
}
.footer-icon a {
  transition: color var(--motion-speed) ease;
}
.footer-icon a:hover {
  opacity: 1;
}
.footer-icon svg {
  fill: currentColor;
  height: 1em;
  line-height: 1;
  width: auto;
}
.footer-icon.footer-icon--hyland a:hover {
  color: #6abf4b;
}
.footer-icon.footer-icon--hyland svg {
  margin-left: -5px;
  font-size: 28px;
}
.footer-icon.footer-icon--nuxeo a path {
  transition: fill var(--motion-speed) ease;
}
.footer-icon.footer-icon--nuxeo a .nsvglogo-x {
  fill: #73d2cf;
}
.footer-icon.footer-icon--nuxeo a .nsvglogo {
  fill: #fff;
}
.footer-icon.footer-icon--nuxeo a:hover .nsvglogo-x {
  fill: #73d2cf;
}
.footer-icon.footer-icon--nuxeo a:hover .nsvglogo {
  fill: #73d2cf;
}
.footer-icon.footer-icon--nuxeo svg {
  font-size: 14px;
}

.button.button--university {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  margin: 0 0 0 1rem;
  padding: 0.4375rem 0.625rem;
}
.button.button--university:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}
@media print, screen and (max-width: 39.99875em) {
  .button.button--university {
    display: none;
  }
}
.button.button--university svg {
  font-size: 1.125rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Cookie Banner */
.cookie-banner {
  background: #000;
  border-top: 1px solid #fff;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px;
  position: fixed;
  width: 100%;
  z-index: 2;
  transition: opacity var(--motion-speed-slow) ease;
}
.cookie-banner.faded {
  opacity: 0;
}

.cookie-banner__container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}
@media screen and (max-width: 50em) {
  .cookie-banner__container {
    flex-direction: column;
    text-align: center;
  }
}
.cookie-banner__container p {
  font-weight: 400;
  margin: 0.88889rem 0 0.94444rem;
}
.cookie-banner__container a {
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: opacity var(--motion-speed) ease;
  text-decoration: none;
}
.cookie-banner__container a:hover,
.cookie-banner__container a:focus {
  opacity: 0.7;
}
.cookie-banner__container .button.close-button {
  font-size: 1rem;
  margin: 0 0 0 2rem;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #06f;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.1px;
  line-height: 1.5;
  padding: 0.375rem 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--motion-speed) ease;
}
.cookie-banner__container .button.close-button:hover,
.cookie-banner__container .button.close-button:focus {
  background-color: #0058db;
  border: 0;
}
@media screen and (max-width: 50em) {
  .cookie-banner__container .button.close-button {
    margin: 2rem 0;
  }
}

iframe {
  height: 310px;
}

iframe body {
  margin: 0.6em;
}

textarea {
  border: 1px solid #dedede;
  margin: 0 auto;
  padding: 0.4em;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid #eee;
  /*box-shadow: 0 0 4px rgba(0,0,0,0.3);*/
}

@media (min-width: 48em) {
  header {
    padding: 0 0.3rem 0 1rem;
  }

  header img {
    width: 5rem;
  }
}
@media (min-width: 64em) {
  header {
    padding: 0 2rem;
  }

  header img {
    width: 6.5rem;
  }
}
.registration {
  text-align: right;
  flex: 2;
}

.signIn input[type="text"],
.signIn input[type="password"],
.signIn input[type="submit"] {
  max-width: 10em;
  display: inline-block;
  padding: 0.5em 1em;
  line-height: 20px;
}

.signOut > span {
  padding-left: 1em;
}

/*-- =Forms Add / Edit Package --*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  display: block;
  padding: 12px 13px;
  border: #d6dadc 1px solid;
  font-size: 1em;
  color: #444;
  font-weight: 400;
  outline: none 0;
  resize: none;
  border-radius: 0;
  transition: all 0.1s;
  box-shadow: inset 0 1px 2px rgba(27, 31, 35, 0.075);
  background-color: #fafbfc;
}

input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

label.boxOrRadio {
  cursor: pointer;
}

.mainBox {
  margin-block: 5rem 1.875rem;
  min-height: calc(100vh - 26.25rem);
}
.mainBox h1 {
  margin-inline: 0.5625rem;
}

#packageEditForm h4 {
  border-bottom: 1px solid #eee;
  padding: 0 0 0.3em 0;
  font-size: 1.8em;
}

span.info {
  font-size: small;
  background-color: lightgray;
  border-radius: 50%;
  font-weight: bold;
  margin-left: 10px;
  margin-right: 10px;
}

.uploadTable {
  border-collapse: separate;
  border-spacing: 0.5625rem 0.5625rem;
}
.uploadTable td {
  vertical-align: top;
}
.uploadTable select {
  width: 230px;
}
.uploadTable .mceLayout {
  width: 500px !important;
}
.uploadTable input[name="associatedResourcesLabels"] {
  margin-bottom: 0.5625rem;
}
.uploadTable .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5625rem;
}
.uploadTable img {
  max-width: 100%;
  max-height: 70vh;
}
