/*
 * 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('../blocks/side-nav/side-nav.css');

:root {
  /* Primary Color Variables */
  --wsu-crimson: #903;
  --wsu-white: #fff;
  --wsu-black: #262223;
  --wsu-orange: #ff5c5e;

  /* Secondary Color Variables */
  --wsu-teal: #069;
  --wsu-purple: #639;
  --wsu-red: #ed0033;
  --wsu-nicm-green: #4EDCCA;
  --wsu-nicm-green-dark: #008780;

  /* Tertiary Color Variables */
  --wsu-crimson-15: #f0d7d6;
  --wsu-crimson-30: #e1b4af;
  --wsu-purple-15: #e6dceb;
  --wsu-purple-30: #cdb9d7;
  --wsu-teal-15: #bEd7e1;
  --wsu-teal-30: #82b4c8;
  --wsu-vibrant-purple: #c9f;

  /* Other Color Variables */
  --wsu-off-white: #f2f2f2;
  --wsu-lightest-gray: #eaebea;
  --wsu-light-gray: #c4c2c3;
  --wsu-mid-gray: #898687;
  --wsu-dark-gray: #3a3537;
  --light-color: #f8f8f8;
  --wsu-red-border: #eb004e;

  /* Default Theme Colors */
  --text-color: var(--wsu-black);
  --link-color: var(--wsu-red);
  --link-hover-color: var(--wsu-black);
  --link-hover-background-color: var(--wsu-orange);
  --bg-color: var(--wsu-white);
  --button-bg-color: #ff5c5e;
  --button-hover-bg-color: #d45a4e;
  --button-hover-text-color: #ff5c5e;



  /* fonts */
  --body-font-family: gotham narrow a, sans-serif;
  --heading-font-family: gotham narrow a, sans-serif;
  --heading-font-family-secondary: chronicle text g1 a, sans-serif;

  /* body sizes */
  --body-font-size-m: 16px;

  /* heading sizes */
  --heading-font-size-xxl: 32px;
  --heading-font-size-xl: 24px;
  --heading-font-size-l: 20px;
  --heading-font-size-m: 18px;
  --heading-font-size-s: 16px;
  --heading-font-size-xs: 14px;
  --heading-font-size-xxl-large: 56px;
  --heading-font-size-xl-large: 32px;
  --heading-font-size-l-large: 24px;
  --heading-font-size-m-large: 20px;
  --heading-line-height-xxl-large: 0.86;
  --heading-line-height-xl-large: 1.25;
  --heading-line-height-l-large: 1.33;
  --heading-line-height-m-large: 1.2;

  /* nav height */
  --nav-height: 64px;
}

/* fallback fonts */
@font-face {
  font-family: roboto-condensed-fallback;
  size-adjust: 88.82%;
  src: local('Arial');
}

@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

@media (width >=992px) {
  :root {
    /* body sizes */

    /* heading sizes */
    --heading-font-size-xxl: 48px;
    --heading-font-size-xl: 32px;
    --heading-font-size-l: 24px;
    --heading-font-size-m: 16px;
    --heading-font-size-s: 16px;
    --heading-font-size-xs: 14px;
    --heading-font-size-xxl-large: 96px;
    --heading-font-size-xl-large: 48px;
    --heading-font-size-l-large: 32px;
    --heading-font-size-m-large: 24px;
    --heading-line-height-xxl-large: 0.92;
    --heading-line-height-xl-large: 1.16;
    --heading-line-height-l-large: 1.25;
    --heading-line-height-m-large: 1.33;
  }
}

* {
  box-sizing: border-box;
}

body {
  display: none;
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-m);
  font-weight: 400;
  line-height: 1.5;
}

body.appear {
  display: block;
}

header .header,
footer .footer {
  visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
  font-family: var(--heading-font-family);
  scroll-margin: 40px;
}

.secondary-font :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--heading-font-family-secondary);
}

h1,
h2 {
  color: var(--wsu-crimson);
  line-height: 1.0;
}


h1 {
  font-size: var(--heading-font-size-xxl);
  font-weight: 800;
  line-height: 1.25;
}

h2 {
  font-size: var(--heading-font-size-xl);
  font-weight: 500;
  line-height: 1.33;
}

h3 {
  color: var(--wsu-crimson);
  font-size: var(--heading-font-size-l);
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  color: var(--wsu-black);
  font-size: var(--heading-font-size-m);
  font-weight: 500;
  line-height: 1.2;
}

h5 {
  color: var(--wsu-black);
  font-size: var(--heading-font-size-s);
  font-weight: 500;
  line-height: 1.2;
}

h5 a {
  font-size: var(--body-font-size-m);
  font-weight: 400;
  line-height: 1.5;
}

h6 {
  color: var(--wsu-black);
  font-size: var(--heading-font-size-xs);
  font-weight: 700;
  line-height: 1.14;
}


li {
  padding: 4px 0;

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 0;
  }
}

.large h1 {
  font-size: var(--heading-font-size-xxl-large);
  line-height: var(--heading-line-height-xxl-large);
}

.large h2 {
  font-size: var(--heading-font-size-xl-large);
  font-weight: 800;
  line-height: var(--heading-line-height-xl-large);
}

.large h3 {
  font-size: var(--heading-font-size-l-large);
  line-height: var(--heading-line-height-l-large);
}

.large h4 {
  font-size: var(--heading-font-size-m-large);
  line-height: var(--heading-line-height-m-large);
}

dl,
ol,
ul,
pre,
blockquote {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
}

p {
  margin: 0 0 24px;
  padding: 0;
}

.default-content-wrapper {

  /* Add consistent spacing for all direct children */
  >h1,
  >h2,
  >h3,
  >h4,
  >h5,
  >h6,
  >p,
  >ul,
  >ol,
  >dl,
  >pre,
  >blockquote,
  >div,
  >table,
  >figure,
  >section,
  >article,
  >aside,
  >nav,
  >header,
  >footer,
  >img {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  /* Remove top margin from first child */
  >*:first-child {
    margin-top: 0;
  }

  ol {
    list-style: none;
    counter-reset: number-counter;
    padding: 0;
  }

  ol>li {
    counter-increment: number-counter;
    position: relative;
    padding-left: 32px;
  }

  ol>li::before {
    content: counter(number-counter);
    position: absolute;
    left: 0;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    width: 32px;
    text-align: center;
  }

  ul {
    list-style: none;
    padding: 0;
  }

  ul li {
    position: relative;
    padding-left: 32px;
  }

  ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 32px;
  }
}

.default-content-wrapper,
.image-wrapper {
  a:any-link {
    color: var(--link-color);
    overflow-wrap: break-word;
    text-decoration: underline;
    background: linear-gradient(to right, var(--link-hover-background-color) 0 0) no-repeat left bottom / 0% 100%;
    transition: background-size 0.3s, color 0.3s;

    sub {
      background: linear-gradient(to right, var(--link-hover-background-color) 0 0) no-repeat left bottom / 0% 100%;
      display: inline-block;
      transition: background-size 0.3s, color 0.3s;
    }
  }

  a:has(sub) {
    background: none;
  }

  a:hover,
  a:hover sub {
    color: var(--link-hover-color);
    background-size: 100% 100%;
  }
}

strong {
  font-weight: 700;
}

/* Fix for text showing dots/hyphens/underscores as visual artifacts */
/* Using display: inline-block breaks the text decoration inheritance */
sub,
sup {
  display: inline-block;
  text-decoration: none;
}

/* Ensure subscript/superscript elements don't show underline even inside links */
a sub,
a sup,
a:hover sub,
a:hover sup {
  text-decoration: none;
}

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

pre {
  padding: 16px;
  border-radius: 8px;
  background-color: var(--light-color);
  overflow-x: auto;
  white-space: pre;
}

main>div {
  padding: 40px 0;
}

input,
textarea,
select,
button {
  font: inherit;
}

.btn--solid {
  background-color: var(--wsu-orange);
  border-width: 0;
  padding: 20px 24px;

  &:disabled,
  .disabled {
    opacity: 0.6;
    pointer-events: none;
  }
}

.btn--outline {
  background-color: transparent;
  border-color: #262223;
  padding: 19px 24px;

  &:disabled,
  .disabled {
    opacity: 0.6;
  }
}

.btn--solid,
.btn--outline {
  &::after {
    background-color: var(--wsu-black);
    content: '';
    height: 100%;
    width: 0;
    position: absolute;
    z-index: 6;
    top: 0;
    left: 0;
    transition: all .3s;
  }
}

.bg-black .btn--solid::after,
.bg-dark-gray .btn--solid::after {
  background-color: var(--wsu-white);
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* sections */

main>.section>div {
  margin: auto;
}

.wsu-section[class^="bg"],
.wsu-section[class*=" bg"] {
  padding: 40px 20px;
}

.wsu-section>div[class$="-wrapper"]:not(:first-child) {
  margin-top: 1rem;
}

@media (width >=768px) {
  main>div {
    padding: 40px 0;
  }

  .default-content-wrapper {
    p {
      img {
        max-width: 400px;
        max-height: 600px;
      }
    }
  }
}

@media (width >=992px) {
  main>.section>div {
    max-width: 920px;
  }
}

@media (width >=1220px) {
  main>.section>div {
    max-width: 1100px;
  }
}

@media (width >=1920px) {
  main>.section>div {
    max-width: 1440px;
  }
}

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

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
  margin: 0;
  padding: 40px 0;
}

/* buttons */

.button-container .button,
a:any-link.button {
  display: inline-block;
  padding: 20px 24px;
  border-radius: 0;
  text-transform: uppercase;
  font-family: var(--heading-font-size-xs);
  font-weight: 700;
  line-height: 1.14;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--button-bg-color);
  color: var(--wsu-black);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;

  &::after {
    background-color: var(--wsu-black);
    content: "";
    height: 100%;
    width: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }

  &:hover {
    color: var(--button-hover-text-color);
  }

  &:hover::after {
    width: 100%;
  }
}

@media (width < 768px) {

  .button-container .button,
  a:any-link.button {
    width: 100%;
    text-align: center;
  }
}

.button__wrap a {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding: 20px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--button-bg-color);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button__wrap a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--link-hover-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.button__wrap a:hover {
  color: var(--button-hover-text-color);
}

.button__wrap a:hover::before {
  left: 0;
}

.btn--solid,
a:any-link.button-solid {
  border-width: 0;
  padding: 20px 24px;
}

.btn--outline,
a:any-link.btn--outline {
  background-color: transparent;
  border: 1px solid #262223;
  color: var(--text-color);
}

.btn--outline:hover,
a:any-link.btn--outline:hover {
  background-color: #262223;
  color: #fff;
}

.btn__text {
  position: relative;
  z-index: 2;
}

.section.bg-black {
  background-color: var(--wsu-black);
  color: var(--wsu-white);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-white);
  }

  .btn--solid,
  .button {
    background-color: var(--wsu-orange);
    color: var(--wsu-black);

    &:hover {
      color: var(--wsu-black);
    }

    &::after {
      background-color: #fff;
    }
  }

  .btn--outline {
    border-color: var(--wsu-white);
    color: var(--wsu-white);
  }
}

.section.bg-crimson {
  background-color: var(--wsu-crimson);
  color: var(--wsu-white);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-white);
  }

  a.button {
    color: var(--wsu-black);
    background-color: var(--wsu-white);

    &:hover {
      color: var(--button-hover-text-color);
    }
  }

  .btn--outline {
    border-color: var(--wsu-white);
    color: var(--wsu-white);

    &:hover {
      background-color: var(--wsu-white);
    }

    &::after {
      background-color: var(--wsu-white);
    }
  }
}

.section.bg-dark-gray {
  background-color: var(--wsu-dark-gray);
  color: var(--wsu-white);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-white);
  }

  a.button {
    color: var(--wsu-black);

    &::after {
      background-color: var(--wsu-white);
    }
  }

  .btn--outline {
    border-color: var(--wsu-white);
    color: var(--wsu-white);

    &:hover {
      background-color: var(--wsu-white);
    }

    &::after {
      background-color: var(--wsu-white);
    }
  }
}

.section.bg-light-gray {
  background-color: var(--wsu-light-gray);
  color: var(--wsu-black);

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-black);
  }
}

.section.bg-off-white {
  background-color: var(--wsu-off-white);
  color: var(--wsu-black);

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-black);
  }
}

.section.bg-orange {
  background-color: var(--wsu-orange);
  color: var(--wsu-black);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-black);
  }

  .btn--solid,
  a.button {
    background-color: var(--wsu-white);
  }
}

.section.bg-red {
  background-color: var(--wsu-red);
  color: var(--wsu-white);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-white);
  }

  .btn--solid,
  a.button {
    background-color: var(--wsu-white);
    color: var(--wsu-black);

    &:hover {
      color: var(--button-hover-text-color);
    }
  }
}

.section.bg-purple {
  background-color: var(--wsu-purple);
  color: var(--wsu-white);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-white);
  }

  .btn--solid,
  a.button {
    background-color: var(--wsu-white);
    color: var(--wsu-black);

    &:hover {
      color: var(--button-hover-text-color);
    }
  }

  .btn--outline {
    border-color: #fff;
    color: #fff;

    &:hover {
      background-color: var(--wsu-white);
    }

    &::after {
      background-color: var(--wsu-white);
    }
  }
}

.section.bg-teal {
  background-color: var(--wsu-teal);
  color: var(--wsu-white);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-white);
  }

  .btn--solid,
  a.button {
    background-color: var(--wsu-white);
    color: var(--wsu-black);

    &:hover {
      color: var(--button-hover-text-color);
    }
  }

  .btn--outline {
    border-color: #fff;
    color: #fff;

    &:hover {
      background-color: var(--wsu-white);
    }

    &::after {
      background-color: var(--wsu-white);
    }
  }
}

.section.bg-nicm-green {
  background-color: var(--wsu-nicm-green);
  color: var(--wsu-black);

  a,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--wsu-black);
  }

  a.button {
    color: var(--wsu-black);
    background-color: var(--wsu-white);

    &:hover {
      color: var(--button-hover-text-color);
    }
  }

  .btn--solid {
    background-color: var(--wsu-white);
  }

  .btn--outline {
    border-color: #fff;
    color: #fff;

    &:hover {
      background-color: var(--wsu-white);
    }

    &::after {
      background-color: var(--wsu-white);
    }
  }
}

.new-window-link {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url('/icons/new-tab-icon-red.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 3px;
  margin-bottom: -3px;
}

/* Page Template Layout with Side Nav */

.wsu-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;

  &.collapse {
    padding-left: 0;
    padding-right: 0;
  }

  @media screen and (width >=768px) {
    padding: 0 8px;
    width: 740px;
  }

  @media screen and (width >=992px) {
    padding: 0;
    width: 960px;
  }

  @media screen and (width >=1220px) {
    width: 1140px;
  }

  @media screen and (width >=1920px) {
    width: 1440px;
  }
}

.wsu-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.wsu-layout__main {
  flex: 1;
  min-width: 0;
}

/* Main content wrapper for side-nav template */
.main-content-wrapper {
  flex: 1;
  min-width: 0;
}

.side-nav-wrapper {
  width: 100%;
  padding: 0 0 40px;
}

/* Side content panel - for sections moved to right side */
.side-content-panel {
  display: block;
}

/* Mobile-first: Page template base styles */
.page-template .wsu-layout {
  flex-direction: column;
  gap: 20px;
}

.page-template .wsu-layout__main {
  width: 100%;
}

.page-template .side-nav-wrapper {
  width: 100%;
}

.page-template .side-nav-wrapper img {
  max-width: 100%;
  height: auto;
}

.blank-template {
  main>div:not(.hero-container, .carousel-container) {
    padding: 40px 20px;
  }

  main>div.hero-container>div[class*="-wrapper"]:not([class$="hero-wrapper"]) {
    padding: 40px 20px;
  }
}

/* nicm-green theme styles */
.theme-green {

  h1,
  h2,
  h3 {
    color: var(--wsu-nicm-green);
  }

  .color--white {
  color: var(--wsu-white)
  }

  .default-content-wrapper {
    a:any-link {
      color: var(--wsu-nicm-green-dark);
      overflow-wrap: break-word;
      text-decoration: underline;
      background: linear-gradient(to right, var(--wsu-nicm-green) 0 0) no-repeat left bottom / 0% 100%;
      transition: background-size 0.3s, color 0.3s;

      sub {
        background: linear-gradient(to right, var(--wsu-nicm-green) 0 0) no-repeat left bottom / 0% 100%;
        display: inline-block;
        transition: background-size 0.3s, color 0.3s;
      }
    }

    a:has(sub) {
      background: none;
    }

    a:hover,
    a:hover sub {
      color: var(--wsu-black);
      background-size: 100% 100%;
    }

    .button-container .button,
    a:any-link.button {
      background-color: var(--wsu-nicm-green);
      color: var(--wsu-black);

      &:hover {
        color: var(--wsu-white);
      }

      &::after {
        background-color: var(--wsu-black);
      }
    }
  }


}

.logo {
  img {
    max-width: min(150px, 100%);
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto;
  }
  p{
    padding: 0;
  }
  .button-container .button, a:any-link.button{
    padding: 0;
  }
}

.image-small {
  img {
    max-width: min(300px, 100%);
    width: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    margin: 0 auto;
  }
}

.image-medium {
  img {
    max-width: min(550px, 100%);
    width: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    margin: 0 auto;
  }
}

.image-large {
  img {
    max-width: min(900px, 100%);
    width: auto;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    margin: 0 auto;
  }
}

@media (width < 992px) {
  .page-template .side-nav-wrapper {
    picture {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    img {
      max-width: min(250px, 100%);
    }
  }
}

/* Tablet: 768px */
@media (width >=768px) {
  .page-template .wsu-layout {
    gap: 24px;
  }
}

/* Small desktop: 992px */
@media (width >=992px) {
  .page-template .wsu-layout {
    flex-direction: row;
    gap: 80px;
  }

  .page-template .wsu-layout__main {
    flex: 0 0 65.8%;
    max-width: 645px;
  }

  .page-template .side-nav-wrapper {
    flex: 1;
    max-width: 275px;
    width: auto;
    margin-top: 0;
    padding: 40px 0;
  }
}

/* Desktop: 1220px */
@media (width >=1220px) {
  .blank-template {
    main>div:not(.hero-container, .carousel-container) {
      padding: 40px 0;
    }
  }

  .page-template .wsu-layout {
    gap: 100px;
  }

  .page-template .wsu-layout__main {
    flex: 0 0 65%;
    max-width: 724px;
  }

  .page-template .side-nav-wrapper {
    flex: 1;
    max-width: 454px;
  }
}

/* Large desktop: 1920px */
@media (width >=1920px) {
  .page-template .wsu-layout {
    gap: 183px;
  }

  .page-template .wsu-layout__main {
    flex: 0 0 56%;
    max-width: 787px;
  }

  .page-template .side-nav-wrapper {
    flex: 1;
    max-width: 470px;
  }
}

/* Reduced gap styles for aside layout */
.wsu-layout.aside-layout {
  gap: 15px;
}

@media (width >=768px) {
  .wsu-layout.aside-layout {
    gap: 20px;
  }
}

@media (width >=992px) {
  .wsu-layout.aside-layout {
    gap: 40px;
  }
}

@media (width >=1220px) {
  .wsu-layout.aside-layout {
    gap: 50px;
  }
}

@media (width >=1920px) {
  .wsu-layout.aside-layout {
    gap: 80px;
  }
}

blockquote p {
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: var(--wsu-crimson);
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  padding: 20px 40px;

  /* Left quote */
  &::before {
    color: #777;
    font-size: 122px;
    font-family: Georgia, "Times New Roman", Times, serif;
    content: open-quote;
    content: "\201C";
    font-weight: 400;
    position: absolute;
    left: -15px;
    top: -32px;
  }

  /* Right quote */
  &::after {
    color: #777;
    display: inline;
    float: right;
    font-size: 122px;
    font-family: Georgia, "Times New Roman", Times, serif;
    content: close-quote;
    content: "\201D";
    font-weight: 400;
    position: absolute;
    right: 0;
    bottom: -90px;
  }
}