/*
 * 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 {
  /* colors */
  --link-color: #035fe6;
  --link-hover-color: #136ff6;
  --primary-hover-background: #f8f8f8;
  --background-color: white;
  --light-color: #eee;
  --dark-color: #ccc;
  --text-color: var(--color-outer-space);
  --border-color: #d8d8d8;
  --divider-border-color: #cecece;
  --color-outer-space: #454545;
  --color-dark-silver: #717171;
  --color-red-pigment: #ed1c24;
  --color-white: #fff;
  --color-deep-green: #056808;
  --color-text-primary: #454545;
  --color-granite-gray: #666;
  --color-dark-charcoal: #333;
  --color-persian-red: #cb3232;
  --color-cultured: #f8f8f8;
  --color-platinum: #e3e3e3;
  --color-chinese-silver: #ccc;
  --color-gray: #7a7d81;
  --color-light-silver: #d8d8d8;

  /* fonts */
  --body-font-family: 'proxima-nova', roboto-fallback;
  --heading-font-family: 'goudy-old-style', 'proxima-nova', roboto-fallback;
  --fixed-font-family: 'proxima-nova', 'Roboto Mono', menlo, consolas, 'Liberation Mono', monospace;
  --icons-font-family: 'visual-comfort-icons', sans-serif;

  /* body sizes */
  --body-font-size-xxxl: 28px;
  --body-font-size-xxl: 26px;
  --body-font-size-xl: 24px;
  --body-font-size-l: 22px;
  --body-font-size-m: 20px;
  --body-font-size-s: 18px;
  --body-font-size-xs: 16px;
  --body-font-size-xxs: 14px;
  --body-font-size-xxxs: 12px;
  --body-font-size-xxxxs: 10px;

  /* odd sizes */
  --body-odd-font-size-xxxs: 13px;
  --body-odd-font-size-xxs: 15px;

  /* heading sizes */
  --heading-font-size-xxl: 48px;
  --heading-font-size-xl: 40px;
  --heading-font-size-l: 32px;
  --heading-font-size-m: 24px;
  --heading-font-size-s: 20px;
  --heading-font-size-xs: 18px;

  /* nav height */
  --nav-height: 55px;
  --mobile-nav-height: 55px;
  --small-mobile-nav-height: 55px;
  --medium-mobile-nav-height: 35px;

  font-size: 62.5%;
}

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

@media screen and (min-width: 900px) {
  :root {
    --heading-font-size-xxl: 60px;
    --heading-font-size-xl: 48px;
    --heading-font-size-l: 36px;
    --heading-font-size-m: 30px;
    --heading-font-size-s: 24px;
    --heading-font-size-xs: 22px;
  }
}

@media screen and (min-width: 1280px) {
  :root {
    --nav-height: 117px;
  }
}

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

body.appear {
  display: block;
}

@media screen and (min-width: 1280px) {
  header {
    padding-top: 48px;
  }
}

@media screen and (max-width: 1279px) {
  header {
    padding-top: 60px;
  }

}

h1, h2, h3,
h4, h5, h6 {
  font-family: var(--heading-font-family);
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
  scroll-margin: calc(var(--nav-height) + 1em);
  text-align: center;
}

h1 { font-size: var(--heading-font-size-xxl) }
h2 { font-size: var(--heading-font-size-xl) }
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) }

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

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;
}

/* prevent incoming <u> tags from adding underlines */
u {
  text-decoration: none;
}

.cms-page .default-content-wrapper {
    margin-bottom: 64px;
}

main .section.carousel-container .default-content-wrapper {
  text-align: center;
  padding: 64px 0 48px;
}

/* links */
a:any-link {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--link-hover-color);
}

/* buttons */
a.button:any-link, button {
  font-family: var(--body-font-family);
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0;
  margin: 14px 0;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text-color);
  text-transform: uppercase;
}

a.button:hover {
  text-decoration: underline;
}

a.button:hover, a.button:focus, button:hover, button:focus  {
  cursor: pointer;
}

.alert button {
  margin:0;
}

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

a.button.secondary, button.secondary {
  background-color: unset;
  border: 2px solid currentcolor;
  color: var(--text-color)
}

a.button-primary {
  text-decoration-line: none;
  text-decoration-style: solid;
  border: solid 1px #333;
  background-color: #fff;
  font-weight: 800;
  line-height: 20px;
  height: 45px;
  display: flex;
  padding: 0 10px;
  align-items: center;
  width: 130px;
  justify-content: center;
  color: var(--text-color);
  text-transform: uppercase;
  font-size: var(--body-font-size-xxxs);
}

a.button-primary:hover {
  background-color: var(--primary-hover-background);
  text-decoration: none;
}

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

.icon {
  display: flex;
  height: 24px;
  width: 24px;
}

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

/* sections */
main .section {
  padding: 30px 15px;
  box-sizing: border-box;
}

main .section br {
  display: none;
}

@media screen and (min-width: 600px) {
  main .section:not(.hero-container, .cms-page) {
    padding: 70px 100px;
  }

  main .section.carousel-container {
    padding: 0 16px !important;
    margin-bottom: 80px !important;
  }

  main .section.cms-page.text-container {
    padding: 0 80px 70px;
  }

  main .section.hero-container {
    padding: 0;
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
}

main .section.background-gray {
  background-color: var(--color-cultured);
}

main .section.top-border {
  padding-top: 0;
}

main .section.top-border::before {
  content: '';
  display: block; /* This will put the pseudo element on its own line. */
  margin: 0 auto; /* This will center the border. */
  padding-top: 70px;
  max-width: 1400px; /* Change this to whatever width you want. */
  width: 100%; /* This will make the border take the full width of its container. */
  border-top: 1px solid var(--divider-border-color); /* This creates the border. Replace black with whatever color you want. */
}

main .section.bottom-border {
  padding-bottom: 0;
}

main .section.bottom-border::after {
  content: '';
  display: block; /* This will put the pseudo element on its own line. */
  margin: 0 auto; /* This will center the border. */
  padding-bottom: 70px;
  max-width: 1400px; /* Change this to whatever width you want. */
  width: 100%; /* This will make the border take the full width of its container. */
  border-bottom: 1px solid var(--divider-border-color); /* This creates the border. Replace black with whatever color you want. */
}

main .section.product-images-container {
  display: none;
}

.no-scroll {
  overflow-y: hidden;
}

.visually-hidden {
  clip-path: inset(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  clip-path: inset(1px 1px 1px 1px);
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  top: -1000px;
  width: 1px;
}

.skip-link:focus {
  background-color: #f0f0f0;
  box-shadow: 0 0 3px 1px #c8c8c8;
  clip-path: none;
  color: #454545;
  font-size: var(--body-font-size-xxs);
  height: auto;
  left: 2px;
  line-height: 1;
  padding: 10px;
  position: fixed;
  right: 2px;
  text-align: center;
  text-decoration: none;
  top: 2px;
  width: auto;
  z-index: 1000;
}

.our-collection p, h3 {
  margin-right: 13%;
  margin-left: 13%;
  text-align: center;
  color: #454545;
  overflow-wrap: break-word;
}

.our-collection p {
  padding-top: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4286;
  font-size: 1.4rem;
}

.light-text p, .light-text h5, .light-text h3, .light-text h2, .light-text h1, .light-text {
  color: #fff;
}

.contact-section p {
  margin: 8px 0;
}

.landing-collection-grid p{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
  font-family: var(--body-font-family);
  text-transform: uppercase;
}

.landing-grid p {
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  font-size: var(--body-font-size-xxs);
  margin: 0 0 8px;
}

.p-proxima p {
  font-family: proxima-nova, sans-serif !important;
}

.address-section > div > div > p {
  margin: 0 0 8px;
}

.our-collection.no-link-text p {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.our-collection h2 {
  font-family: goudy-old-style, serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: normal;
  letter-spacing: 0;
  color: #454545;
}

.our-collection h3 {
  font-style: normal;
  font-weight: 300;
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 1.2px;
  margin-bottom: 50px;
}

.error h1 {
  font-family: goudy-old-style, serif;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 3.8rem;
  letter-spacing: 0;
  color: #454545;
  text-align: left;
}

.error h2 {
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 0;
  color: #454545;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  text-align: left;
}

/* landscape landing page styling */

main .section.landing-grid {
  padding: 80px 40px 0;
}

.black-background {
  background-color: #000;
}

.landing-grid h3 {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 100;
  line-height: 32px; /* 160% */
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--body-font-family);
  max-width: 768px;
  margin: 0 auto 80px;
}

.h1-proxima h1, .h2-proxima h2, .h4-proxima h4, .h5-proxima h5,
.h3-proxima h3, .h6-proxima h6,
.a-proxima a {
  font-family: proxima-nova, sans-serif !important;
}

.cms-page .default-content-wrapper p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 0;
  margin-bottom: 8px;
}

.cms-page .default-content-wrapper img {
  display: block;
  width: 100%;
}

.cms-page .text-wrapper p {
  font-size: 14px;
  line-height: 22px;
}

.landing-grid .cards .cards-card-body p {
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  font-size: var(--body-font-size-xxs);
  margin: 0 0 8px;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

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

.align-left h1,
.align-left h2,
.align-left h3,
.align-left h4,
.align-left h5,
.align-left h6 {
  text-align: left;
}

.align-right h1,
.align-right h2,
.align-right h3,
.align-right h4,
.align-right h5,
.align-right h6 {
  text-align: right;
}

.landing-grid h5, .landing-grid .cards .cards-card-body h5 {
  font-style: normal;
  font-family: var(--body-font-family);
  font-weight: 400;
  font-size: var(--body-font-size-m);
  line-height: 24px;
  margin: 16px 0 12px;
}

.landing-grid .cards-card-body {
  padding: 0 12px;
}

main .section.landing-collection-grid {
  padding: 100px 40px;
}

.landing-collection-grid h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: 44px;
  color: #000;
  font-family: var(--body-font-family);
  margin-bottom: 32px;
}

.landing-collection-grid .cards .cards-card-body p a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.25px;
  font-family: var(--body-font-family);
  text-transform: uppercase;
  margin: 0;
  color: #000;
  align-items: center;
  display: flex;
  height: 52px;
  justify-content: center;
}

.book-consultation li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section.book-consultation.cards-container {
  display: grid;
  grid-template-columns: 1fr auto;
}

.book-consultation {
  font-family: proxima-nova, sans-serif;
  padding: 56px 100px !important;
}

.book-consultation .cards-wrapper {
  max-width: 100%;
  width: 100%;
}

.book-consultation .cards-wrapper .cards-card-body h5 {
  margin: 0 0 16px;
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: 44px;
  margin-top: 0;
}

.book-consultation a.button {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 157.143% */
  letter-spacing: 0.25px;
  text-transform: uppercase;
  padding: 12px 50px;
}

.book-consultation .cards .cards-card-body p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 474px;
  width: 100%;
  letter-spacing: normal;
}

.dropin-input-password {
  display: flex;
  flex-direction: column;
}

.dropin-input-password>div:first-child {
  margin-bottom: 5px !important;
}

.landing-collection-grid .cards-wrapper a div {
  background: #F8F8F8;

  /* padding: 52px 94px; */
}

.landing-collection-grid .cards > ul > li img {
  width: auto;
  aspect-ratio: 1;
  background-color: #F8F8F8;
  object-fit: contain;
  object-position: center;
}

.landing-banner-text h1 {
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 58px;
}

.landing-banner-text h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 100;
  line-height: 76px; /* 118.75% */
  text-transform: uppercase;
}

@media (max-width: 992px) {
  main .section.landing-grid {
    padding: 80px 40px 0;
  }

  .landing-banner-text h2 {
    font-size: 56px;
    font-style: normal;
    font-weight: 100;
    line-height: 68px;
  }

  .landing-collection-grid .cards.grid-4 > ul , main .section.landing-grid .cards.grid-4 > ul{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .landing-grid p, .landing-grid .cards .cards-card-body p {
    font-weight: 300;
  }

  /* .landing-collection-grid .cards-wrapper a div {
    padding: 76px 129px;
  } */

  .book-consultation {
    padding: 48px 80px !important;
  }

  .landing-grid .cards-card-body {
    padding: 0;
  }

  .book-consultation .cards-wrapper .cards-card-body h5 {
    font-size: 28px;
    line-height: 36px;
    max-width: 416px;
  }

  .book-consultation .cards .cards-card-body p {
      max-width: 416px;
  }
}

@media (max-width: 768px) {
  .book-consultation li {
    flex-direction: column;
    justify-content: center;
  }

  .book-consultation .cards-wrapper .cards-card-body h5 {
    text-align: center;
    max-width: 100%;
  }

  .section.book-consultation.cards-container {
    padding: 48px 100px !important;
  }

  .book-consultation .cards .cards-card-body p {
    max-width: 100%;
    text-align: center;
  }

  .book-consultation a.button {
    margin: 24px 0 0;
  }

  main .section.landing-collection-grid {
    padding: 80px 16px;
  }

  /* .landing-collection-grid .cards-wrapper a div {
    padding: 40px 50px;
  } */

  .landing-collection-grid h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .landing-collection-grid .cards.grid-4 > ul, main .section.landing-grid .cards.grid-4 > ul {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 1024px), print {
  .page-wrapper {
    border-top: 4px solid #e3e3e3
  }

  .book-consultation li {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .landing-collection-grid .cards.grid-4 > ul {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  main .section.landing-grid .cards.grid-4 > ul {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section.book-consultation.cards-container {
    padding: 48px 16px !important;
  }

  .cards.text-left-align .cards-card-body {
    margin-bottom: 32px;
  }

  main .section.landing-collection-grid {
    padding: 48px 16px;
  }

  /* .landing-collection-grid .cards-wrapper a div {
    padding: 20px 30px;
  } */

  .landing-collection-grid .cards .cards-card-body p a {
    font-size: 14px;
    line-height: 22px;
  }

  .landing-collection-grid h3 {
    margin: 0 0 32px;
  }

}

body.cms-page-body .with-breadcrumb .breadcrumb-wrapper .breadcrumb {
  background-color: white;
  padding: 30px 0 20px;
  border-top: 1px solid #ddd;
}

body.cms-page-body .with-breadcrumb .breadcrumb-wrapper .breadcrumb ul > li {
  letter-spacing: 0.5px;
}

body.cms-page-body .with-breadcrumb .breadcrumb-wrapper .breadcrumb ul > li:not(:last-of-type)::after {
  padding-left: 6px;
}

.cms-page .text-wrapper {
  padding: 0 20px;
  width: 100%;
  max-width: 768px;
  margin: 0 auto 40px;
}

.cms-page .text-wrapper:last-of-type {
  margin: 0 auto 30px;
}

.cms-page .text-wrapper:has(.intro-text) {
  margin-bottom: 16px;
}

.cms-page .text-wrapper:has(.mb-24) {
  margin: 0 auto 24px;
}

.cms-page .text-wrapper:has(.address-section), .cms-page .text-wrapper:has(.address-section) + .text-wrapper {
  margin-bottom: 32px;
}

.cms-page .text-wrapper .intro-text p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 24px;
}

.cms-page .text-wrapper .left-border p {
  padding-left: 20px;
}

.cms-page .text-wrapper .align-left p:last-of-type {
  font-size: 14px;
  line-height: 22px;
}

.cms-page .text-wrapper .align-left h1 {
  font-size: 48px;
  line-height: 58px;
  margin-top: 16px;
  margin-bottom: 64px;
}

.cms-page .text-wrapper .align-left strong {
  font-weight: 500;
}

.cms-page .text-wrapper .left-border {
  border-left: 1px solid #454545;
}

.cms-page .text-wrapper .left-border h2 {
  padding-left: 20px;
  font-size: 24px;
  line-height: 36px;
  font-family: var(--body-font-family);
  text-align: left;
}

.cms-page .text-wrapper .section-divider {
  border: 1px solid #E3E3E3;
  margin: 40px 0;
}

.cms-page .text-wrapper .text.block p + p {
  margin-top: 8px;
}

.cms-page .text-wrapper h3,
.cms-page .text-wrapper .align-left #press-contact {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 16px;
  text-align: left;
}

.dropin-in-line-alert.dropin-in-line-alert--error,
.dropin-in-line-alert.dropin-in-line-alert--success {
    padding: 15px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    font-family: proxima-nova, sans-serif;
    line-height: 2.2em;
    letter-spacing: .3px;
    margin-bottom: 30px;
}

.dropin-in-line-alert.dropin-in-line-alert--error {
    background: #fbeeee !important;
    border: 1px solid #cb3232 !important;
    color: #cb3232;
}

.dropin-in-line-alert.dropin-in-line-alert--success {
    background: #0568081a !important;
    border: 1px solid #056808 !important;
    color: #056808;
}

.font-icon-success::before {
  content: "\e911";
  font-family: var(--icons-font-family);
  font-size: 2.5rem;
  line-height: 2.5rem;
  display: flex;
  border-right: 1px solid #056808;
  padding: 0 20px 0 0;
}

.dropin-in-line-alert__close svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #333 !important;
}

.dropin-password-status-indicator__item svg {
  color: #2d4d1c;
  width: 16px;
  height: 16px;
  display: none !important;
}

.dropin-in-line-alert.dropin-in-line-alert--error svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #e02b27 !important;
    border-right: 1px solid #cb3232;
    padding: 0 20px 0 0;
    stroke-width: 2;
}

.dropin-in-line-alert__title {
  padding: 0 20px;
}

.dropin-in-line-alert__message {
    flex: 1;
    line-height: 1.4;
    color: #333 !important;
    font-size: 16px !important;
}

.dropin-in-line-alert__heading {
  grid-template-columns: auto auto;
}

.dropin-in-line-alert__close {
    cursor: pointer;
    flex-shrink: 0;
}

.flash-alert__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin: 0 0 0 auto !important;
}

.flash-alert.is-closing {
  display: none !important;
}

.dropin-password-status-indicator {
  position: relative;
  background: #f4f4f4;
  padding: 10px 15px;
  height: 45px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.dropin-password-status-indicator__item {
  display: none !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  z-index: 2;
  position: relative;
  background: transparent;
  order: 3;
}

.dropin-password-status-indicator__item:last-child {
  margin-bottom: 0;
}

.dropin-password-status-indicator::before {
  color: #454545;
  font-size: 14px;
  display: block;
}

.auth-sign-up-form__form__field--confirm-password .dropin-password-status-indicator,
.dropin-password-status-indicator__item--success + .dropin-password-status-indicator__item.dropin-password-status-indicator__item--success,
.account-change-password__fields .dropin-input-password:not(:has(input[name="newPassword"])) .dropin-password-status-indicator,
.account-edit-customer-information__password .dropin-input-password:not(:has(input[name="newPassword"])) .dropin-password-status-indicator, .auth-sign-up-form__form__field .pending, .auth-sign-up-form__form__field .success {
    display: none !important;
}

.password-strength-bar {
  order: 1;
  height: 100%;
  width: 0%;
  transition: width 0.25s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform-origin: left;
}

.password-strength-text {
  display: block;
  position: relative;
  z-index: 10;
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4286;
  font-size: 1.4rem;
  order: 2;
}

.dropin-password-status-indicator.weak .password-strength-bar {
  background: #ffafae;
}

.dropin-password-status-indicator.medium .password-strength-bar {
  background: #ffd6b3;
}

.dropin-password-status-indicator.strong .password-strength-bar {
  background: #c5eeac;
}

.dropin-password-status-indicator.verystrong .password-strength-bar {
  background: #81b562;
}

/* Case 1: Length not satisfied → show first rule, Case 2: Length satisfied but complexity not satisfied → show second rule */
.dropin-password-status-indicator.weak .dropin-password-status-indicator__item:nth-of-type(2).dropin-password-status-indicator__item--pending,
.dropin-password-status-indicator.weak .dropin-password-status-indicator__item:nth-of-type(2).dropin-password-status-indicator__item--error,
.dropin-password-status-indicator.weak .dropin-password-status-indicator__item--success + .dropin-password-status-indicator__item:not(.dropin-password-status-indicator__item--success) {
  display: flex !important;
  padding: 16px 0;
  margin-left: -15px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  body.cms-page-body .cms-page {
    padding: 0;
  }

  body.cms-page-body .with-breadcrumb .breadcrumb-wrapper,
  .cms-page .default-content-wrapper p:last-of-type {
    display: none;
  }

  body.cms-page-body .cms-page .default-content-wrapper {
    margin-bottom: 32px
  }

  .cms-page .text-wrapper:has(.mb-32), .cms-page .text-wrapper:has(.section-divider) {
    margin-bottom: 32px;
  }

  .cms-page .text-wrapper:has(.address-section) {
    margin-bottom: 24px;
  }

  body.cms-page-body .cms-page .text-wrapper {
    max-width: 343px;
    padding: 0;
  }

  .cms-page .text-wrapper:has(.address-section) + .text-wrapper {
    margin-bottom: 24px;
  }

  .cms-page .text-wrapper .section-divider {
    margin: 0;
  }

  .cms-page .text-wrapper .align-left h1 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px;
  }

  .cms-page .text-wrapper .left-border h2 {
    font-size: 20px;
    line-height: 28px;
    padding-left: 16px;
  }

  .cms-page .text-wrapper .left-border p {
    padding-left: 16px;
  }

  .cms-page .default-content-wrapper img {
    height: 255px;
  }
}

@media (min-width: 1024px), print {
  .page-wrapper {
    border-top: 4px solid #e3e3e3
  }
}

@media (max-width: 600px) {
  .dropin-in-line-alert.dropin-in-line-alert--error svg {
    width: 35px !important;
    height: 35px !important;
  }

  .dropin-in-line-alert.dropin-in-line-alert--error {
    gap: 0;
  }
}

.alert {
  padding: 15px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 15px 0;
}

.alert span.alert-message {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  color: #454545;
}

.alert .alert-message::before {
  font-family: visual-comfort-icons, sans-serif;
  font-size: 2.5rem;
  line-height: 2.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 015px;
  color: #333;
  border-right: 1px solid #454545;
  padding: 0 20px 0 5px;
}

.alert.alert-info .alert-message::before {
  content: '\e93c';
}

.alert.alert-info {
  background: #f8f8f8;
  border: 1px solid #454545;
}
