html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-family: aktiv-grotesk, bio-sans, sans-serif;
  color: rgb(0 0 0 / 87%);
  font-synthesis: none;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

.product-details-main,
.product-details-header-main,
.home-page,
.search-results,
.portfolio-guide-page,
.footer-content,
.navigation-main {
  margin-right: auto;
  margin-left: auto;
  width: 100%;

  /* xs */
  @media (width >= 0) {
    /* background-color: pink; */
  }

  /* s */
  @media (width >= 576px) {
    max-width: 540px;

    /* background-color: blue; */
  }

  /* md */
  @media (width >= 768px) {
    max-width: 720px;

    /* background-color: rgb(139, 211, 51); */
  }

  /* lg */
  @media (width >= 992px) {
    max-width: 900px;

    /* background-color: rgb(211, 58, 15); */
  }

  /* xl */
  @media (width >= 1200px) {
    max-width: 1100px;

    /* background-color: rgb(211, 28, 165); */
  }

  /* xxl */
  @media (width >= 1400px) {
    max-width: 1350px;

    /* background-color: rgb(182, 155, 195); */
  }
}

.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 20px;
  border: 1px solid red;
  border-radius: 5px;
  background-color: #f8d7da;
  color: #000;
  text-align: center;
}

.error-title {
  margin: 0 0 10px;
}

.error-message {
  color: rgb(0 0 0);

  /* font-weight: bold; */
  padding: 10px;
  min-width: 50%;
  border: 1px solid red;

  /* background-color: #ffe6e6; */
  border-radius: 5px;
}

.line {
  height: 2px;
  width: 50px;
  background-color: var(--ciena-red-1);
  margin-bottom: 10px;
  margin-top: 0;
}

.loading {
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height:100%;

}
.footer-header {
  text-align: left;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.link-grid {
  display: grid;
  justify-items: start;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 15px;
  max-width: 1200px;
  width: 100%;
}

.link-item {
  text-align: center;
}

.copyright {
  margin-top: 60px;
  margin-bottom: 20px;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.2px;
  letter-spacing: 0.14px;
}

.link-item a {
  text-decoration: none;
  font-family: aktiv-grotesk, sans-serif;
  color: var(--ciena-white, #fefefe);
  font-size: 12px;
  line-height: 20px;
  width: 100%;
  border-radius: 4px;
  text-align: center;
}

.link-item a:hover {
  color: var(--ciena-midnight-18);
}

.link-item a:focus {
  outline: none;
}

.footer-header h3 {
  margin-bottom: 10px;
  color: var(--ciena-white, #fefefe);
  font-family: bio-sans, sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: -0.84px;
}

.footer-links {
  display: flex;
  color: var(--ciena-white, #fefefe);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

/* .link-group {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.link-group a {
  margin: 5px 0;
  color: #ffffff;
}

.link-group a:hover {
  text-decoration: underline;
} */

.footer {
  background-color: var(--ciena-red-3, #96021b);
  width: 100%;
  bottom: 0;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* navigation bar search bar  */
.search-bar-alternative-input {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  height: 35px;
  padding: 10px;
}

/* home page search bar */
.search-bar-home-input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  min-height: 84px;
  font-size: 1.25rem;
  padding: 10px;
  outline: red;
  border: 1px solid var(--ciena-midnight-18);
}

.search-icon-button {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.search-icon-button svg {
  width: 10px;
  height: 10px;
  fill: #333;
}

.search-icon-button path {
  fill: #000;
  stroke-width: 1px;
  stroke: #140729;
}

.search-bar-alternative-input .search-icon-button {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  background-color: pink;
  transform: translateY(-50%);
}

.search-bar-home-input::placeholder {
  color: var(--ciena-midnight);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.24px;
}

.search-bar-home {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  flex-direction: column;
}

.search-bar-form {
  max-width: 350px;
  min-width: 250px;
  display: flex;
  height: 85px;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
}

.error-message {
  background: none;
}

.error-message text {
  color: var(--ciena-midnight);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.2px;
  letter-spacing: 0.24px;
}

.navigation-main {
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (width <= 576px) {
    flex-direction: column;
    padding: 10px;
  }
}

.navigation-bar {
  display: flex;
  justify-content: space-between;
  border-bottom: 8px solid transparent;
  border-image: linear-gradient(
    0.25turn,
    rgb(149 2 27 / 100%) 11%,
    rgb(220 0 0 / 100%) 11%
  );
  border-image-slice: 1;
}

.ciena-logo {
  display: flex;
  justify-content: center;
}

.ciena-icon img {
  height: 50px;
  width: 150px;
}

.links {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navigation-bar a {
  color: var(--ciena-midnight);
}

.navigation-bar a.active {
  color: var(--ciena-action-blue);
}

.links h3 {
  margin: 0 15px;
  transition: color 0.3s;
  font-weight: 500;
}

.links h3:hover {
  color: var(--ciena-action-blue);
}

.nav-links {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  width: 60%;
  align-items: flex-end;
  gap: 10px;

  @media (width <= 576px) {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 10px;
  }
}

.logout-button button {
  border: none;
  display: flex;
  width: 189px;
  height: 32px;
  padding: 5px 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  flex-shrink: 0;
  color: rgb(20 7 41 / 60%);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.logout-button button:hover {
  color: var(--ciena-midnight);
}

.logout-button button:active {
  color: var(--ciena-midnight);
}

.hit-highlighting em {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.hit-highlighting {
  max-width: 100%;
  text-overflow: ellipsis;
}

.hit-highlighting + .hit-highlighting::before {
  content: "…";
  margin: 0 0.25rem;
}

dl.key-value-pairs {
  margin: 0;
}

.key-value-pairs dt {
  font-weight: 600;
}

.key-value-pairs dt::after {
  content: ": ";
}

div.key-value-pair {
  padding-bottom: 5px;
}

.key-value-pairs dd,
.key-value-pairs dt {
  display: inline;
  margin: 0;
}

.information-classification.restricted {
  color: var(--ciena-red-3);
}

button.button-main {
  display: flex;
  min-height: 20px;
  min-width: 100px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  text-align: center;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
  font-weight: 600;
  color: var(--ciena-midnight);
  letter-spacing: 0.16px;
  border: none;
  background: none;
}

button.oval-button {
  border-radius: 32px;
  background: var(--ciena-action-blue, #01f);
  color: var(--ciena-white);
  padding: 14px 24px;
}

button.oval-button:hover {
  color: var(--ciena-white);
  background-color: rgb(0 10 153 / 100%);
}

button.oval-button:active {
  color: var(--ciena-white);
  background-color: rgb(0 7 102 / 100%);
}

button.oval-button:focus,
button.oval-button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.button-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 0;
  gap: 10px;

  @media (width <= 576px) {
    flex-wrap: wrap;
  }
}

.copy-direct-link {
  display: inline-flex;
  position: relative;
}

.copy-direct-link-notice {
    background-color: var(--ciena-red-1);
    color: var(--ciena-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

.modal-overlay {
  background-color: rgb(20 7 41 / 60%);
  opacity: 0.5;
  position: fixed;
  inset: 0;
}

@keyframes content-show {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-content {
  background-color: var(--ciena-white);
  box-shadow: hsl(206deg 22% 7% / 35%) 0 10px 38px -10px,
    hsl(206deg 22% 7% / 20%) 0 10px 20px -15px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  animation: content-show 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-content:focus {
  outline: none;
}

/* needed? */
.modal-title {
  margin: 0;
  font-weight: 800;
  color: black;
  font-size: 17px;
}

/* needed? */
.modal-description {
  margin: 10px 0 20px;
  font-size: 15px;
  line-height: 1.5;
}

div.content-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: aktiv-grotesk, bio-sans, sans-serif;
    padding: 50px;
}

content-error > a {
    text-decoration: underline;
}
embed.opti-embed {
  width: 100%;
  height: 100%;
}

embed.sharepoint-embed {
  width: 100%;
  height: 100%;
}

.sharepoint-viewer {
  width: 100%;
  height: 100%;
}

.preview-modal {
  height: 80vh;
  max-width: 1440px;
  width: 80vw;
}

.preview-button-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.preview-modal-container {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.preview-modal-footer {
  display: flex;
  justify-content: end;
  padding: 10px;
}

.preview-download-button {
  background-color: var(--ciena-action-blue, #01f);
  color: var(--ciena-white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.more-information {
  padding: 25px;
  min-width: 50vw;
  z-index: 1000;
  font-family: aktiv-grotesk, sans-serif;
  border-left: 8px solid transparent;
  border-image: linear-gradient(
    0deg,
    rgb(220 0 0 / 100%) 0 90%,
    rgb(149 2 27 / 100%) 90% 100%
  );
  border-image-slice: 1;
}

.modal-content:focus {
  outline: none;
}

.modal-title {
  margin: 0;
  font-weight: 800;
  color: black;
  font-size: 17px;
}

.modal-description {
  margin: 10px 0 20px;
  font-size: 15px;
  line-height: 1.5;
}

.more-information-title {
  font-size: 150%;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding-bottom: 10px;
}

.more-information-abstract {
  padding-bottom: 10px;
}

.image-card {
  display: flex;
  flex-direction: column;

  /* gap: 20px; */
  width: 50%;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

.opti-viewer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.opti-viewer img {
  max-width: 100%;
  height: auto;
}

.product-result {
  display: flex;
  width: 100%;
  padding: 10px;
  gap: 20px;
}

.product-result-image {
  width: 25%;
}

.product-result-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.product-result-content {
  width: 75%;
}

.product-result-overview {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-result-previews {
  flex-wrap: wrap;
  gap: 10px;
}

.asset-card {
  padding: 20px 40px;
  background: #f1f0f2;
  border-radius: 5px;
  font-size: 16px;
  font-family: aktiv-grotesk, sans-serif;
  border-right: 8px solid transparent;
  border-image: linear-gradient(
    0deg,
    rgb(220 0 0 / 100%) 0 85%,
    rgb(149 2 27 / 100%) 85% 100%
  );
  border-image-slice: 1;
}

.product-card {
  padding: 10px 20px;
  background: #f1f0f2;
  border-radius: 5px;
  font-size: 16px;
  font-family: aktiv-grotesk, sans-serif;
  box-shadow: 5px 7px 4px 0 rgb(0 0 0 / 25%);
}

.more-info-button {
  display: flex;
  flex-direction: row;
}

.card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10px;
}

.result-type {
  display: flex;
  align-items: center;
  color: var(--ciena-red-3, #95021b);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-date {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ciena-midnight, #140729);
  text-align: right;
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 20.8px;
}

.date-label {
  font-weight: 600;
}

.result-title {
  color: var(--ciena-midnight, #140729);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.48px;
}

p {
  margin: 0;
}

.asset-details-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.asset-details-results-section {
    width: 70%;
    border-color: var(--ciena-midnight-6);
    height: 100%;
}

.home-login {
  display: flex;
  justify-content: flex-end;
  padding: 5px 15px;
}

.home-form {
  width: 100%;
  max-height: 300px;
  min-height: 250px;
  margin-bottom: 150px;
  display: flex;
  place-content: center center;
  padding: 5px;
}

.title h2 {
  color: var(--ciena-midnight, #140729);
  font-family: bio-sans, sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 300;
  margin: 0;

  @media (width <= 576px) {
    font-size: 3rem;
  }
}

.home-header {
  padding: 60px 0;

  @media (width <= 576px) {
    padding: 20px 10px;
  }
}

.welcome-text {
  color: var(--ciena-midnight, #140729);
  font-family: bio-sans, sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  word-wrap: break-word;

  @media (width <= 576px) {
    font-size: 1.5rem;
  }
}

/* remove styling from source */
.welcome-text h2 {
  all: inherit;
}

.feedback-text {
  margin-bottom: 80px;
}

.feedback-text strong {
  color: var(--ciena-midnight);
  font-family: bio-sans, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 42px;
}

.feedback-text p {
  color: var(--ciena-midnight);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.feedback-text a {
  color: var(--ciena-action-blue);
}

.feedback-text a:hover {
  color: var(--ciena-midnight);
}

.portfolio-guide-page {
  width: 100%;
  height: 100%;
}

.portfolio-guide-title {
  color: var(--ciena-midnight, #140729);
  font-family: bio-sans, sans-serif;
  font-size: 90px;
  font-style: normal;
  font-weight: 300;
  margin-top: 80px;
}

.portfolio-guide-content {
  width: 100%;
}

.portfolio-guide-content embed {
  width: 100%;
  height: 653.879px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  margin-bottom: 100px;
}

.wrapper {
  border-bottom: 1px solid black;
  overflow: hidden;
}

.wrapper .label-container {
  width: 100%;
  text-align: left;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.label-container.active {
  color: #3171e0;
  background-image: linear-gradient(
    90deg,
    transparent,
    rgb(0 0 0 / 4%),
    transparent
  );
}

.wrapper .label-container:hover {
  background-image: linear-gradient(
    90deg,
    transparent,
    rgb(0 0 0 / 4%),
    transparent
  );
}

.wrapper .arrow {
  font-size: 2rem;
  transition: 0.5s ease-in-out;
}

.arrow.active {
  rotate: 180deg;
  color: #3d60ab;
}

.wrapper .value-container {
  padding: 0 1rem;
  transition: height 0.7s ease-in-out;
}

.wrapper .value-content {
  padding: 1rem 0;
  font-size: 100%;
  line-height: 1.5rem;
}

.wrapper .label-content {
  font-family: bio-sans, sans-serif;
  font-weight: 300;
  font-size: 120%;
}

.accordion-main {
  left: 50%;
}

.content-box {
  background-color: rgb(255 255 255);
  color: rgb(0 0 0);
  border-radius: 8px;

  /* box-shadow: 0 2px 5px rgba(172, 161, 161, 0.2); */
  transition: transform 0.2s;

  /* max-width: 600px; */

  /* margin: 0 auto; */
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.information-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.information-container .eyebrow {
  text-transform: uppercase;
  font-size: 90%;
  font-weight: 500;
  color: rgb(67 57 84 / 100%);
}

.information-container-title {
  font-size: 150%;
  font-weight: 600;
  line-height: 1;
}

.information-container-abstract {
  padding-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.thumbnail-image {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.thumbnail-image:hover {
  opacity: 0.8;
}

.thumbnail-image:active {
  transform: scale(0.98);
}

.core-content {
  display: flex;
  gap: 15px;
  min-width: 500px;
}

.split-container {
  display: flex;
  height: auto;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
}

.half {
  /* flex: 1; */
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom {
  background-color: var(--ciena-midnight-6);
  color: var(--ciena-midnight);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  flex-shrink: 1;
}

.top {
  background-color: rgb(67 57 84 / 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 50px 70px 0;
  max-height: 300px;
  min-height: 100px;
  overflow-y: hidden;
}

.product-details-section-header {
  font-family: bio-sans, sans-serif;
  font-weight: 300;
  font-size: 250%;
  color: var(--ciena-midnight);
  background-color: var(--ciena-midnight-6);
  padding: 20px 30px;
  border-radius: 5px;
  margin: 0;
  line-height: normal;
}

.tab-group {
  display: flex;
  justify-content: space-between;

  @media (width <= 576px) {
    flex-direction: column;
    align-items: center;
  }
}

.tab-items {
  display: flex;
  justify-content: center;
  width: 45%;
}

.tab-list {
  width: 45%;

  @media (width <= 576px) {
    width: 90%;
  }
}

.tab-list li {
  list-style-type: none;
  line-height: 5rem;
  width: 100%;
  border-top: 1px solid var(--ciena-midnight-18);
  font-weight: 500;
  font-size: 120%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.tab-list li.selected {
  border-right: 4px solid var(--ciena-action-blue);
  border-bottom: 1px solid var(--ciena-midnight-18);
  color: var(--ciena-action-blue);
}

.tab-list li.selected svg {
  width: 30px;
  height: 30px;
  padding: 4px;
}

.react-tabs {
  display: flex;
  flex-direction: row;
  width: 100%;
}

h1 {
  font-size: 1.5em;
  line-height: 1.3;
  margin-bottom: 15px;
}

.product-details-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.product-details-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-details-header {
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  width: 100%;
  line-height: 1;
  background-color: var(--ciena-midnight-6);
}

.product-details-header-main > h1 {
  font-size: 400%;
  font-family: bio-sans, sans-serif;
  font-weight: 300;
  margin: 0;
  padding-left: 10px;
  max-width: 75%;
}

.product-details-header-main > h2 {
  font-size: 100%;
  margin: 0;
  text-transform: uppercase;
  font-family: aktiv-grotesk, sans-serif;
  font-weight: 600;
  padding-left: 10px;
}

.product-details-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  gap: 70px;
  padding-top: 50px;
}

.product-details-hero-right-panel {
  display: flex;
  flex-direction: column;
  min-width: 40%;
  padding: 40px 10px;
  gap: 60px;
}

.image-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plm-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: bio-sans, sans-serif;
  font-size: 150%;
  font-weight: 300;
}

.plm-contact a {
  text-decoration: none;
  color: unset;
}

.product-details-key-information {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-details-accordion {
  width: 100%;
}

.product-details-page-navigation {
  background-color: var(--ciena-midnight-12);
  padding: 20px 30px;
}

.product-details-page-navigation h3 {
  margin: 0;
  font-family: bio-sans, sans-serif;
  font-weight: 300;
  font-size: 200%;
  padding-bottom: 20px;
  color: var(--ciena-midnight);
}

.kaon-modal {
  height: 85vh;
  width: 90vw;
}

.product-details-core-content,
.product-details-powerhour,
.product-details-family-content,
.product-details-external-resources {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-details-powerhour .powerhour-container {
  display: flex;
  flex-direction: column;
}

.related-family-content-pagination,
.powerhour-pagination {
  width: fit-content;
  display: flex;
  padding: 10px;
  gap: 10px;

  /* border: 1px solid var(--ciena-midnight-12); */
  border-radius: 4px;
}

.pagination button {
  padding: 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  background-color: #f0f0f0;
}

.pagination span {
  font-size: 16px;
  margin: 0 10px;
}

.powerhour-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  border-bottom: 1px solid #ddd;
}

.product-details-external-resources,
.product-details-family-content {
  display: flex;
  flex-direction: column;
}

.external-resources-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.related-family-content-box {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 20px 60px;
  border-bottom: 1px solid #ccc;
}

.product-details-page .anchor-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  @media (width <= 576px) {
    flex-direction: column;
  }
}

.related-hardware-container {
  display: flex;
  gap: 10px;
  padding: 20px;
}

.related-hardware-box {
  width: 33%;
}

.product-details-page .anchor-links button {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: var(--ciena-white);
  cursor: pointer;
  flex-grow: 1;
  min-height: 120px;
  border-left: 8px solid var(--ciena-red-1);
  font-weight: 300;
  font-family: bio-sans, sans-serif;
  font-size: 150%;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (width <= 576px) {
    flex-direction: column;
    width: 100%;
    min-height: 30px;
  }
}

.product-details-page .anchor-links button svg {
  min-width: 20px;
  min-height: 20px;
}

.breadcrumb {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
}

.home-navigation {
  display: inline;
}

.home-navigation a {
  color: rgb(20 7 41 / 60%);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
}

.home-navigation span {
  margin: 0 5px;
}

.breadcrumb p {
  display: inline;
  color: rgb(20 7 41 / 60%);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
}

.date-range-group {
  margin-bottom: 10px;
}

.date-range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.facet-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.clear-date-range-button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  background: none;
  font-weight: 600;
  text-transform: lowercase;
}

.clear-date-range-button h2 {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  background: none;
  font-weight: 600;
  text-transform: lowercase;
}

.date-range-header h2 {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.date-range-radio-main {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 5px;
}

.date-range-radio-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.date-range-radio-group input {
  min-width: 21px;
  max-width: 21px;
  height: 24px;
  border-radius: 50%;
  color: var(--ciena-midnight-18);
}

.date-range-radio-group input:focus {
  /* outline: auto; */
  color: var(--ciena-action-blue);
}

.date-range-radio-group input:hover {
  color: var(--ciena-action-blue);
  outline: auto;
  border-radius: 10%;
}

.date-range-radio-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.date-range-radio-label:hover {
  color: var(--ciena-action-blue);
}

.date-range-radio-label:active {
  color: var(--ciena-action-blue);
}

.icon {
  width: 30px;
  height: 30px;
  color: var(--ciena-midnight);
  font-weight: 300;
}

.icon:hover {
  color: var(--ciena-action-blue);
}

.facet-group {
  /* margin-bottom: 10px; */
}

.facet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.facet-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.facet-clear-button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  background: none;
  font-weight: 600;
  text-transform: lowercase;
}

.facet-header h2 {
  font-family: aktiv-grotesk, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18.2px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.checkbox {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 5px;
  border-style: hidden;
}

.checkbox input {
  min-width: 21px;
  max-width: 21px;
  height: 24px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--ciena-midnight-18);
  background-color: transparent;
  position: relative;
}

.checkbox input:checked {
  border-color: var(--ciena-action-blue);
  background-color: var(--ciena-action-blue);
}

.checkbox input:focus {
  outline: solid;
  color: var(--ciena-action-blue);
}

.checkbox input:hover {
  color: var(--ciena-action-blue);
}

.facet-checkbox-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.facet-expand-button {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  background: none;
  font-weight: 600;
  margin: 0 10px;
}

.facet-checkbox-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.facet-checkbox-label:hover {
  color: var(--ciena-action-blue);
}

.facet-checkbox-label:active {
  color: var(--ciena-action-blue);
}

.icon {
  width: 30px;
  height: 30px;
  color: var(--ciena-midnight);
  font-weight: 300;
}

.icon:hover {
  color: var(--ciena-action-blue);
}

.filter {
  background-color: var(--ciena-facet);
  width: 100%;
  justify-content: center;
  text-align: left;
  padding: 20px;
}

h3 {
  font-size: 16px;
}

.search-results {
  width: 100%;
}

.search-results-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  width: 100%;
  padding: 10px;
  gap: 40px;
}

.search-results-filter-by {
  display: flex;
  flex-direction: row;
  width: 30%;
  justify-content: space-between;
  align-items: center;
}

.search-results-filter-by h1 {
  color: rgb(20 7 41 / 60%);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.search-results-page-info {
  color: var(--ciena-midnight, #140729);
  text-align: right;
  font-family: bio-sans, sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: 48px;
  letter-spacing: -0.84px;
}

button.clear-filter-button {
  display: flex;
  width: 132px;
  height: 31px;
  padding: 5px 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid #e9e7eb;
  background: #f4f3f5;
}

button.clear-filter-button button p {
  border: none;
  display: flex;
  width: 189px;
  height: 32px;
  padding: 5px 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  flex-shrink: 0;
  color: rgb(20 7 41 / 60%);
  font-family: aktiv-grotesk, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.search-results-main {
  display: flex;
  width: 100%;
  margin-top: 0;
  gap: 20px;
}

.search-results-line {
  height: 2px;
  background-color: var(--ciena-midnight-12);
}

.sidebar-section {
  width: 30%;
  height: 100%;
  display: flex;
  place-content: center center;
}

.results-section {
  width: 70%;
  border-color: var(--ciena-midnight-6);
  height: 100%;
}

.results-cards {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.search-breadcrumb {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-results-pagination-container {
  margin: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

/* pagination text */
.pagination li a {
  color: var(--ciena-action-blue);
  padding: 8px 12px;
  border: 1px solid var(--ciena-midnight-18, #d5d2d8);
  background: rgb(255 255 255 / 0%);
  cursor: pointer;
}

.pagination .active a {
  background-color: var(--ciena-action-blue);
  color: var(--ciena-white);
}

.pagination .disabled a {
  color: #ccc;
  cursor: not-allowed;
  border-color: #ccc;
}

.pagination li a:hover {
  background-color: var(--ciena-action-blue);
  color: var(--ciena-white);
}

@media (width >= 768px) and (width <= 991px) {
  h2 {
    font-size: 2em;
    line-height: 0.3;
  }
}

@media (width >= 991px) and (width <= 1200px) {
  h2 {
    font-size: 1em;
    line-height: 0.3;
  }
}

a {
  text-decoration: none;
  color: var(--ciena-midnight);
}

a:hover,
button:hover {
  color: var(--ciena-action-blue);
}

/* a:visited {
  color: unset;
} */

html {
  scroll-behavior: smooth;
}

:root {
  --ciena-red-1: rgb(220 0 0);
  --ciena-red-2: rgb(185 1 14);
  --ciena-red-3: rgb(150 2 27);
  --ciena-midnight: rgb(20 7 41);
  --ciena-white: rgb(254 254 254);
  --ciena-midnight-6: rgb(241 240 242);
  --ciena-midnight-12: rgb(227 225 229);
  --ciena-midnight-18: rgb(213 210 216);
  --ciena-midnight-24: rgb(199 195 204);
  --ciena-midnight-30: rgb(184 181 191);
  --ciena-action-blue: rgb(0 17 255);
  --ciena-facet: rgb(245 245 245);
}


/*# sourceMappingURL=main-raw.4bf0f787758a26fb7cf3.css.map*/