/*
 * 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.
 */

@import url('reset.css');

/* breakpoints
  sm: <768px;
  md: 768px;
  lg: 1024px;
  xl: 1280px;
  xxl: 1600px;
*/

:root {
  /* colors */
  --link-color: #0033ab;
  --link-hover-color: #23527c;
  --background-color: #fff;
  --overlay-background-color: #eee;
  --footer-background-color: #e6e6e6;
  --highlight-background-color: #ccc;
  --text-color: #000;
  --airless-blue: #0033ab;
  --airless-border: #ddd;
  --airless-link-dark: #333;
  --error-color: #B32203;
  --success-color: #78be20;
  --airless-header-gray: #777;

  /* fonts */
  --body-font-family: eurostile, 'Titillium Web', eurostile-fallback, sans-serif;
  --heading-font-family: var(--body-font-family);

  /* body sizes */
  --body-font-size-l: 22px;
  --body-font-size-m: 18px;
  --body-font-size-s: 16px;
  --body-font-size-xs: 14px;
  --body-font-size-xxs: 12px;

  /* heading sizes */
  --heading-font-size-xxl: 36px;
  --heading-font-size-xl: 30px;
  --heading-font-size-l: 24px;
  --heading-font-size-m: 18px;
  --heading-font-size-s: 14px;
  --heading-font-size-xs: 12px;

  /* Fixed height of nav to maintain CLS */
  --nav-height: 74px;
}

@font-face {
  font-family: eurostile-fallback;
  size-adjust: 95.00%;
  src: local("Arial");
}

b, strong {
  font-weight: 700;
}


/** Franklin Required **/
body {
  display: none;
  font-family: var(--body-font-family);
}

body.appear {
  display: block;
}

/* progressive section appearance */
main .section[data-section-status='loading'],
main .section[data-section-status='initialized'] {
  display: none;
}

/** End Franklin Required **/

h1, h2, h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h1, h2, h3,
h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: 500;
  line-height: 1.1;
  color: var(--airless-blue);
}

h1 {
  font-size: var(--heading-font-size-xxl);
}

h1 b, h1 strong {
  padding-right: 5px;
}

h1 a {
  font-size: 65%;
  font-weight: 400;
  line-height: 1;
  color: var(--airless-blue);
  padding: 0 5px;
}

h1 a + a {
  display: unset;
}

h1 a:only-of-type {
  display: none;
}

h1 a + a::before {
  content: "/\00a0";
}

h2 {
  font-size: var(--heading-font-size-xl);
  padding-bottom: 10px;
}

h3 {
  font-size: var(--heading-font-size-l)
}

h4 {
  font-size: var(--heading-font-size-m)
}

h5 {
  font-size: var(--heading-font-size-s)
}

h6 {
  font-size: var(--heading-font-size-xs)
}

/* stylelint-disable-next-line  no-descending-specificity */
a {
  color: var(--link-color);
  text-decoration: none;
}

/* stylelint-disable-next-line  no-descending-specificity */
a:hover, a:focus {
  color: var(--link-hover-color);
  text-decoration: underline;
}

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

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

body.product-details-template h1 strong,
body.product-details-template h2 strong {
  color: var(--airless-link-dark);
}

body.product-details-template h1 small {
  display: none;
}

header {
  min-height: var(--nav-height);
}

main {
  margin: 10px 0;
  padding: 0 15px;
}

main img:nth-last-of-type(1){
  width: 100%;
  height: auto;
}

main .section {
  display: block;
  border-top: 8px solid var(--overlay-background-color);
  margin-top: 20px;
}

main .section.page-title-container {
  margin-top: 30px;
  line-height: 1.4286;
  padding-bottom: 10px;
}

main .section.card-heading h3 {
  font-weight: 400;
  line-height: 1.6;
  color: var(--airless-header-gray);
  font-size: calc(var(--heading-font-size-l) * .65);
}

main .section.card-heading h3 strong {
  font-weight: 700;
  line-height: 1.1;
  color: var(--airless-blue);
  font-size: var(--heading-font-size-l);
}

main .section.support-links > div {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

main .section.support-links > div > h3 {
  flex-basis: 100%;
}

main .section.support-links > div > p {
  flex-basis: 50%;
}

.accessories.cards > ul {
  grid-template-columns: repeat(auto-fill, minmax(22%, 1fr));
  grid-gap: 20px 30px;
}

.accessories .cards-card-body {
  padding: 9px;
  font-size: 14px;
}

.accessories div.cards-card-image > picture {
  display: inline-block;
  min-height: auto;
  min-width: 100%;
}

.accessories div.cards-card-image > picture > img {
  object-fit: contain;
}

.accessories div.cards-card-image {
  display: flex;
}

.accessories .cards-card-body > a {
  color: var(--airless-link-dark);
}

main a.resource-link[href*="findManual"]::before,
.resources > .data a[href*="findManual"]::before {
  content: "\f1c1  ";
  font-family: fontawesome, sans-serif;
}

main a.resource-link[href$=".pdf"]::before,
.resources > .data a[href$=".pdf"]::before {
  content: "\f1c1  ";
  font-family: fontawesome, sans-serif;
}

main.error {
  padding: 100px 60px 150px;
  display: flex;
  align-items: center;
}

main.error h1 {
  font-size: 100px;
  color: var(--text-color);
  width: 100%
}

@media screen and (min-width: 768px) {
  :root[lang="cz"],
  :root[lang="de"],
  :root[lang="fr"],
  :root[lang="nl"],
  :root[lang="pl"] {
    --nav-height: 238px;
  }

  :root[lang="en"] {
    --nav-height: 159px;
  }

  :root[lang="es"],
  :root[lang="it"]{
    --nav-height: 179px;
  }

  body.product-details-template h1 small {
    display: inline;
    font-size: 65%;
    font-weight: 400;
    line-height: 1;
    color: var(--airless-header-gray);
  }

  main {
    box-sizing: border-box;
    margin: 10px auto;
    padding: 0 25px;
    width: 768px;
  }

  main .section.support-links > div > p {
    flex-basis: 25%;
  }

}

@media screen and (min-width: 1024px) {
  :root[lang="cz"],
  :root[lang="pl"] {
    --nav-height: 266px;
  }

  :root[lang="de"],
  :root[lang="fr"],
  :root[lang="it"],
  :root[lang="nl"] {
    --nav-height: 210px;
  }

  :root[lang="en"] {
    --nav-height: 190px;
  }

  :root[lang="es"] {
    --nav-height: 265px;
  }

  main {
    margin: 20px auto;
    width: 1004px;
    padding: 0 42px;
  }

  main .section.support-links {
    width: 83.333%;
    margin: 0 auto;
  }

}

@media screen and (min-width: 1280px) {
  :root[lang="cz"],
  :root[lang="es"],
  :root[lang="de"],
  :root[lang="fr"],
  :root[lang="it"],
  :root[lang="nl"],
  :root[lang="pl"] {
    --nav-height: 245px;
  }

  :root[lang="en"] {
    --nav-height: 227px;
  }

  main {
    width: 1260px;
    padding: 0 31px;
  }
}

@media screen and (min-width: 1620px) {
  :root[lang="cz"],
  :root[lang="en"],
  :root[lang="es"],
  :root[lang="de"],
  :root[lang="fr"],
  :root[lang="it"],
  :root[lang="nl"],
  :root[lang="pl"] {
    --nav-height: 284px;
  }

  main {
    width: 1600px;
    padding: 0 15px;
  }
}

@media screen and (min-width: 1630px) {
  main {
    padding: 0;
  }
}

@font-face {
  font-family: eurostile;
  src: url("./eurostile.woff2") format("woff2");
  font-display: block;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}

@font-face {
  font-family: eurostile;
  src: url("./eurostile-bold.woff2") format("woff2");
  font-display: block;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

