/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

 :root {
  /* basic/reusable colors */
  --white: #fff;
  --black: #000;
  --danger: #dc3545;
  --light-blue: #4ca4d5;
  --light-color: #f7f8f9;
  --dark-color: #ccc;
  --darker-color: #818181;
  --darkest-color: #5e5e5e;
  --transparent-black: rgba(0 0 0 / 26%);
  --small-transparent-black: rgba(0 0 0 / 30%);
  --text-color: #151515;
  --light-text-color: var(--white);
  --light-link-color: var(--white);
  --background-color: var(--white);

  /* icons */
  --brand-link-secondary-icon: "\e0c8";
  --brand-link-search-icon: "\e0c8";

  /* fonts */
  --body-font-family: arial, sans-serif;
  --heading-font-family: var(--body-font-family);
  --fixed-font-family: 'Roboto Mono', menlo, consolas, 'Liberation Mono', monospace;

  /* body sizes */
  --body-font-size-xl: 24px;
  --body-font-size-l: 20px;
  --body-font-size-m: 16px;
  --body-font-size-xm: 14px;
  --body-font-size-s-plus: 13px;
  --body-font-size-s: 12px;
  --body-font-size-xs: 10px;

  /* heading sizes */
  --heading-font-size-xxxl: 2.75rem;
  --heading-font-size-xxl-plus: 2.625rem;
  --heading-font-size-xxl: 2.5rem;
  --heading-font-size-xl: 2.1875rem;
  --heading-font-size-xl-s: 2rem;
  --heading-font-size-l-plus: 1.5rem;
  --heading-font-size-l: 1.25rem;
  --heading-font-size-xm: 1.15rem;
  --heading-font-size-m: 1rem;
  --heading-font-size-s: 0.75rem;
  --heading-font-size-xs: 0.5rem;

  /* Site Content Width */
  --content-fixed-width: 1140px;
  --header-fixed-width: 1600px;
  --max-width-small: 720px;
  --max-width-medium: 960px;
  --max-width-large: 1180px;
}

@font-face {
  font-family: work-sans;
  size-adjust: 115%;
  ascent-override: 92%;
  src: local("Arial");
}

@font-face {
  font-family: work-sans;
  size-adjust: 110%;
  ascent-override: 92%;
  font-weight: 700;
  src: local("Arial");
}



html {
    scroll-behavior: smooth;
    text-size-adjust: none;
    /* stylelint-disable-next-line */
    -moz-text-size-adjust: none;
    /* stylelint-disable-next-line */
    -webkit-text-size-adjust: none;
}

body {
  font-size: var(--body-font-size-m);
  margin: 0;
  font-family: var(--body-font-family);
  line-height: var(--text-line-height, normal);
  color: var(--text-color);
  background-color: var(--background-color);
  display: none;
}

body.appear {
  display: block;
}

:target {
  scroll-margin-block-start: 5ex;
}

h1, h3,
h4, h5, h6 {
  font-family: var(--heading-font-family);
  line-height: 1.25;
  font-weight: 400;
  margin-top: 1em;
  margin-bottom: .5em;
}

h1 { 
  color: var(--h1-color, --brand-color-primary-2);
  font-size: var(--heading-font-size-xxl); 
  font-weight: 400;
}

h2 { 
  color: var(--h2-color, var(--brand-color-primary-2));
  font-size: var(--heading-font-size-xl);
  font-weight: 400;
  line-height: 1.25;
  margin-top: 1em;
  margin-bottom: .5em;
  
}

h3 { 
  color: var(--h3-color, var(--brand-color-primary-1));
  font-size: var(--heading-font-size-xl-s);
  margin-bottom: .75rem;
}

h4 { 
  color: var(--h4-color, var(--brand-color-primary-1));
  font-size: var(--heading-font-size-l-plus);
  font-weight: 700;
}

h5 {
  color: var(--h5-color, gray);
  font-size: var(--heading-font-size-s);
  margin-bottom: 1.5rem;
}

h6 { 
  color: var(--h6-color, var(--brand-color-primary-1));
  font-size: var(--heading-font-size-xs) 
}

p, dl, ol, ul, pre, blockquote {
  margin-top: 1em;
  margin-bottom: 1em;
  overflow-wrap: break-word;
}

code, pre {
  font-family: var(--fixed-font-family);
  font-size: var(--body-font-size-s);
}

code {
  padding: .125em;
}

pre {
  overflow: scroll;
}

main pre {
  background-color: var(--light-color);
  padding: 1em;
  border-radius: .25em;
  overflow-x: auto;
  white-space: pre;
}

/* links */
a {
  color: var(--link-color, #0078bd);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--link-hover-color,  #12175e);
}

a.external-link:hover span {
  text-decoration: underline;
}

a.external-link::after {
  position: relative;
  top: 2px;
  left: 3px;
  font-family: "Material Icons", sans-serif;
  content: "\e89e";
  line-height: 1;
}

.back-to-top {
  display: inline-block;
  background-color: var(--back-to-top-button, var(--brand-color-primary-1));
  border: 2px solid var(--back-to-top-button, var(--brand-color-primary-1));
  color: transparent;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top i {
  color: var(--back-to-top-icon, var(--white));
  display: block;
  font-size: 24px;
}

.back-to-top:hover {
  background-color: var(--back-to-top-button-hover, var(--brand-color-secondary-3));
  border-color: var(--back-to-top-border-hover, var(--brand-color-secondary-3));
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

/* buttons */
button {
  border: none;
  font: inherit;
  background: none;
  padding: 0;
  cursor: pointer;
}

.button {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-m);
  display: inline-flex;
  align-items: baseline;
  box-sizing: border-box;
  text-decoration: none;
  border: 0;
  padding: 15px 30px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  cursor: pointer;
  color: var(--background-color);
  background-color: var(--regular-button-color, var(--brand-color-secondary-1));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: var(--site-focus-color, var(--brand-color-secondary-2)) auto 1px;
}

.button:hover,
.button:focus-visible {
  background-color: var(--regular-button-hover-color ,var(--brand-color-secondary-2));
  text-decoration: none;
  color: var(--background-color);
  cursor: pointer;
}

button:disabled, button:disabled:hover {
  background-color: var(--light-color);
  cursor: unset;
}

.button.primary {
  background-color: var(--brand-color-secondary-1);
  color: var(--button-primary-text-color, var(--white));
}

.button.primary:hover,
.button.primary:focus-visible{
  background-color: var(--brand-color-secondary-2);
}

.button.primary::before{
  content: '\e0c8';
  display: inline-block;
  color:var(--button-primary-text-color, var(--white));
  margin-right: 4px;
  font-family: "Material Icons", sans-serif;
  font-size: var(--body-font-size-xm);
  transition-duration: .15s;
  transform: translateY(1px);
}

.button.secondary{
 background-color: var(--secondary-button-bg-color, var(--brand-color-primary-2));
}

.button.secondary:hover,
.button.secondary:focus-visible{
  background-color: var(--secondary-button-hover, var(--brand-color-primary-1));
}

img {
  font-style: italic;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.icon {
  display: inline-block;
  width: 1rem;
  margin: 5px;
}

.icon img {
 vertical-align: text-top;
 filter: var(--social-icon-color)
}

.material-icons {
  line-height: 1;
  font-family: "Material Icons", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  font-style: normal;
  text-transform: none;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

/* sections */
.section {
  margin-inline: auto;
}

.section:not(:where(.hero-container, .product-hero-container)) {
  margin-block: 5rem;
}

.section:empty {
  display: none;
}

main > .section:first-of-type {
  margin-block: 0;
}

.section > div {
  padding-inline: .8rem;
  max-width: var(--content-fixed-width);
  margin-inline: auto;
}

.section.full-width > div {
  max-width: unset;
  padding-inline: 0;
}

.section[class*='bg-color'] {
  margin-block: 0;
  padding-block: 2rem;
}

/* Section Styles */

.section.center-default-text .default-content-wrapper {
  text-align: center;
}

.section.center-text {
  text-align: center;
}

.section.center-images picture {
  display: flex;
  justify-content: center;
}

.section.inline-buttons .button-container {
  display: inline-flex;
}

.section.box-shadow {
  box-shadow: inset 0 3px 6px -2px var(--transparent-black);
  margin-block: 0;
  padding-block: 2rem;
}

.section.box-shadow-small {
  box-shadow: 0 2px 4px 0 var(--small-transparent-black), 0 2px 4px 0 var(--small-transparent-black);
  margin-block: 0;
  padding-block: 2rem;
}

.section.margin-bottom-small {
  margin-bottom: 2.5rem;
}

.section.margin-bottom-off {
  margin-bottom: 0;
}

.section.margin-top-small {
  margin-top: 2.5rem;
}

.section.margin-top-off {
  margin-top: 0;
}

/* Section BG Colors */
.bg-color-light-grey {
  background-color: var(--light-color);
}

.bg-color-light-blue {
  background-color: var(--bg-color-light-blue);
}

.bg-well-royal-blue {
  background-color: var(--bg-well-royal-blue, #035fe6);
  max-width: var(--content-fixed-width);
  max-height: 900px;
  padding-bottom: 20px;
  padding-top: 10px;
}

.bg-well-royal-blue h2{
  color: var(--white);
  font-size: var(--heading-font-size-l-plus);
  padding: 0 60px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 10px;
  width: auto;
}

.bg-well-royal-blue p a{
  font-family: var(--body-font-family);
  font-size: var(--heading-font-size-m);
  text-decoration: underline;
  color: var(--white);
  padding: 0 100px;
  margin-top: 0;
  display: block;
  width: auto;
  row-gap: 0;
  line-height: 1;
}

.bg-well-royal-blue p a:last-child {
  margin-bottom: 0;
}

.bg-well-royal-blue p {
  margin-top: 8px;
  margin-bottom: 8px;
}

.bg-well-blue {
  background-color: var(--bg-well-blue, #136ff6);
  max-width: var(--content-fixed-width);
  margin-bottom: 0;
  padding-top: 35px;
  padding-bottom: 35px;
}

.bg-well-blue .columns-img-col {
  height: auto;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.bg-well-blue .columns-img-col picture {
  display: grid;
  justify-content: center;
}

.bg-well-blue h3{
  width: auto;
  color: var(--white);
  padding-right: 80px;
  font-size: var(--heading-font-size-xl);
  margin-bottom: 5px;
}

.bg-well-blue p {
  width: auto;
  color: var(--white);
  margin-top: 5px;
  margin-left: 0;
}

.bg-well-red {
  background-color: var(--bg-well-red, var(--danger));
  max-width: var(--content-fixed-width);
  margin-top: 0;
  padding-top: 35px;
  padding-bottom: 35px;
}

.bg-well-red .columns-img-col {
  height: auto;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
} 

.bg-well-red .columns-img-col picture {
  display: grid;
  justify-content: center;
}

.bg-well-red h3{
  width: auto;
  color: var(--white);
  font-size: var(--heading-font-size-xl);
  margin-bottom: 5px;
}

.bg-well-red p {
  width: auto;
  color: var(--white);
  margin-top: 5px;
}

@media (width >= 900px) {
  .article img {
    width: 419px;
  }
}

.modal-wrapper .columns-wrapper {
  padding: 0 24px;
}

/* Product Detail List Items */
.section.product-detail-list-items .columns-wrapper {
  margin-inline: auto;
  max-width: 540px;
}

.section.product-detail-list-items h3 {
  color: var(--product-details-title-color, var(--brand-color-primary-1));
  font-size: 1.5rem;
  text-align: center;
}

.home .section .default-content-wrapper h3 {
  padding: .75rem 0;
}

.section.product-detail-list-items h5 {
  color: var(--product-details-list-title-color, var(--brand-color-primary-1));
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.section.product-detail-list-items p {
  color: var(--product-details-text-color, var(--brand-color-primary-1));
  font-size: 1rem;
  margin: 0;
}

.section.disclaimers p{
  line-height: 1;
  color: var(--disclaimer-text-color, var(--darker-color));
  font-size: .75rem;
}

.section.product-detail-list-items .columns-wrapper p {
  color: var(--product-details-columns-text-color, var(--brand-color-primary-1));
  font-size: 1rem;
  margin: 0;
}

.section.product-detail-list-items picture {
  display: flex;
  justify-content: center;
}

.section.product-detail-list-items .columns-img-col {
  max-width: 445px;
  margin-inline: auto;
}

.section.product-detail-list-items .product-detail-lower img {
  width: 100px;
  max-width: none;
}

.section.product-detail-list-items .product-detail-lower {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}

.section.product-detail-list-items .columns-2-cols > div {
  gap: 40px;
}

@media (width >= 768px) {
  .section.product-detail-list-items .columns-wrapper {
    max-width: var(--max-width-small);
  }

  .section.product-detail-list-items h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .section.product-detail-list-items picture {
    justify-content: end;
  }

  .section.product-detail-list-items h5 {
    position: relative;
    padding-left: 60px;
    display: flex;
    align-items: center;
  }

  .section.product-detail-list-items h5::before {
    border-radius: 6px;
    content: "";
    width: .75rem;
    height: .75rem;
    background-color: var(--product-details-bullet-color, var(--brand-color-primary-1));
    position: absolute;
    left: 0;
  }

  .section.product-detail-list-items h5::after {
    content: "";
    height: 3px;
    background-color: var(--product-details-bullet-color, var(--brand-color-primary-1));
    position: absolute;
    left: 0;
    right: 0;
    width: 50px;

  }

  .section.product-detail-list-items p {
    padding-left: 60px;
  }

  .section.product-detail-list-items .product-detail-lower p {
    padding: 0;
  }

  .section.product-detail-list-items .product-detail-lower picture {
    display: block;
    margin-right: 1rem;
  }
}

@media (width >= 992px) {
  .section.product-detail-list-items .columns-wrapper {
    max-width: var(--max-width-medium);
  }
}

@media (width >= 1200px) {
  .section.product-detail-list-items .columns-wrapper {
    max-width: var(--max-width-large);
  }
}

/* Product Detail List Items End */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Loader */
.loader {
  display: block;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #6c757d;
  width: 5.5rem;
  height: 5.5rem;
  animation: rotate 2s linear infinite;
  text-align: center;
  margin: 2rem auto;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

/* A header skeleton styles while we wait for the header to load */
header.header-skeleton {
  box-shadow: 0 2px 4px 0 var(--transparent-black);
}

header.header-skeleton .skeleton-alert {
  min-height: 34px;
  background-color: var(--brand-color-secondary-2);
}

header.header-skeleton .skeleton-utility {
  min-height: 45px;
  background-color: var(--brand-color-primary-2);
}

header.header-skeleton .skeleton-body {
  min-height: 86px;
  background-color: var(--background-color);
}

.icpusa header.header-skeleton .skeleton-body {
  min-height: 123px;
  background-color: #004b85;
}

header.header-skeleton .skeleton-vertical-body {
  min-height: 47px;
  background-color: var(--background-color);
}

@media (width <= 1140px) {
  header.header-skeleton .skeleton-body {
    min-height: 50px;
  }

  header.header-skeleton .skeleton-utility {
    min-height: unset;
    background-color: var(--mobile-utiliry-bg-color, var(--white));
  }
}


/* Section Meatadata Created Play buttons throught the image modal link key. */
.has-play-button {
  position: relative;
}

.has-play-button .play-button-link {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  max-width: 60px;
}

.has-play-button .play-button-link svg {
  width: 100%;
  height: 100%;
}

.has-play-button .play-button-link circle.bg-fill {
  fill: var(--play-button-color, rgb(0 120 189 / 50%)) !important;
}

.has-play-button .play-button-link:hover circle.bg-fill {
  fill: var(--play-button-hover-color, var(--brand-color-primary-2)) !important;
}

.block[data-block-status="loading"] {
  display: none;
}

/* 404 Error Page Styles */

.error-title {
  color: var(--brand-color-primary-2);
  font-size: 2.2rem;
  margin: 20px 0;
}

.error-subtitle {
  color: var(--brand-color-primary-2);
  font-size: 1.5rem;
  margin: 10px 0;
}

.error-h3 {
  margin: 0;
}
