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

@font-face {
  font-family: VarelaRounded;
  src: url('/fonts/VarelaRound-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: SourceSans;
  src: url('/fonts/SourceSans-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'sourcesans-normal-400-fallback';
  font-style: normal;
  font-weight: 400;
  src: local('Trebuchet MS');
  ascent-override: 89.9%;
  descent-override: 26.76%;
  line-gap-override: 0%;
  size-adjust: 102.01%;
}

@font-face {
  font-family: 'varelarounded-normal-400-fallback';
  font-style: normal;
  font-weight: 400;
  src: local('Tahoma');
  ascent-override: 83.51%;
  descent-override: 20.88%;
  line-gap-override: 0%;
  size-adjust: 112.991%;
}

:root {
  /* colors */
  --link-color: #007680;
  --link-hover-color: #23527c;
  --background-color: #fff;
  --background-color-secondary: #e7e9ea;
  --overlay-background-color: #eee;
  --highlight-background-color: #ccc;
  --cool-background-color: #ecedee;
  --text-color: #333f48;
  --text-secondary-color: #bf0d3e;
  --heading-text-color: #333f48;
  --button-primary-color: #bf0d3e;
  --button-secondary-color: #007680;
  --button-primary-hover-color: #e8104d;
  --button-secondary-hover-color: #33bfcc;
  --footer-background-color: #333f48;
  --footer-list-background-color: #e7e9ea;
  --footer-font-color: #fff;
  --nav-secondary-color: #e5e5e5;
  --error-color: #960930;
  --nav-content-background-color: #ecedee;
  --dialog-yes-color: #48bb78;
  --dialog-yes-hover-color: #7bc99c;

  /* fonts */
  --body-font-family: 'SourceSans', sourcesans-normal-400-fallback, arial,
    helvetica, sans-serif;
  --heading-font-family: 'VarelaRounded', varelarounded-normal-400-fallback,
    arial, helvetica, sans-serif;
  --fixed-font-family: 'Roboto Mono', menlo, consolas, 'Liberation Mono',
    monospace;

  /* body sizes */
  --body-font-size-l: 1.5rem;
  --body-font-size-m: 1rem;
  --body-font-size-s: 18px;
  --body-font-size-xs: 16px;

  /* heading sizes */
  --heading-font-size-xxl: 2.1875rem;
  --heading-font-size-xl: 1.625rem;
  --heading-font-size-l: 1.3125rem;
  --heading-font-size-m: 1.3125rem;
  --heading-font-size-s: 1.3125rem;
  --heading-font-size-xs: 1rem;

  /* heading line heights */
  --heading-line-height-xxl: 2.813rem;
  --heading-line-height-xl: 2.25rem;
  --heading-line-height-l: 1.938rem;
  --heading-line-height-m: 1.938rem;
  --heading-line-height-s: 1.938rem;
  --heading-line-height-xs: 1.625rem;

  /* heading font weight */
  --nav-font-weight: 350;
  --heading-font-weight: 400;

  /* nav height */
  --nav-height: 65px;
  --nav-promo-height: 66px;
  --header-height: var(--nav-height);
  --nav-margin-top: 0px;

  /* border */
  --border-color: #c5c9cb;
}

@media (min-width: 1024px) {
  :root {
    --nav-height: 96px;
    --nav-promo-height: 66px;
  }
}

@media (min-width: 720px) {
  :root {
    --nav-height: 80px;
    --header-height: calc(44px + var(--nav-height));
    --nav-margin-top: 44.5px;
  }
}

@media (min-width: 768px) {
  :root {
    /* heading sizes */
    --heading-font-size-xxl: 3rem;
    --heading-font-size-xl: 2.5rem;
    --heading-font-size-l: 2.1875rem;
    --heading-font-size-m: 1.625rem;

    /* heading line heights */
    --heading-line-height-xxl: 3.625rem;
    --heading-line-height-xl: 3.125rem;
    --heading-line-height-l: 2.813rem;
    --heading-line-height-m: 2.25rem;
  }
}

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

body.appear {
  display: unset;
}

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

body.has-promo header:not(.header-paid-wrapper) {
  height: calc(
    var(--nav-height) + var(--nav-promo-height) + var(--nav-margin-top)
  );
}

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

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

h1 em {
  color: var(--text-secondary-color);
  font-style: normal;
}

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

h2 em {
  color: var(--text-secondary-color);
  font-style: normal;
}

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

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

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

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

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

hr {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  border: 0;
  border-bottom: 1px solid var(--overlay-background-color);
}

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

code,
samp {
  padding: 0.125em;
}

pre {
  overflow: scroll;
}

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

a:any-link {
  color: var(--link-color);
  font-family: var(--heading-font-family);
}

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

.bullet-checkmarks li {
  margin-bottom: 1rem;
}

.bullet-checkmarks li::marker {
  content: '\2713\0020';
  padding: 1rem;
}

.section.sitemap li {
  list-style-type: none;
}

.section.sitemap li a {
  text-decoration: none;
}

.section.sitemap ul ul {
  padding-left: 24px;
}

main .section.block-with-header .footnotes-links a {
  font-size: 0.7rem;
}

a[href*="//"] :not([href^="https://www.24petwatch.com"]) :not([href^="https://24petwatch.com"]) :not([href*="tel:"]) :not([href^=localhost]) :not(.cards a) :after
{
  font-family: 'Font Awesome 6 Pro', sans-serif;
  content: '';
  margin: 0.3rem;
  font-size: 0.9rem;
}

/* buttons */
a.button:any-link,
button {
  font-family: var(--body-font-family);
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 0.875rem 1.625rem;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  color: var(--background-color);
  background-color: var(--button-primary-color);
  margin: 16px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0.625rem;
}

@media (min-width: 768px) {
  a.button:any-link,
  button {
    display: inline-block;
  }
}

a.button:hover,
a.button:focus,
button:hover,
button:focus {
  background-color: var(--button-primary-hover-color);
  cursor: pointer;
}

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

a.button.secondary,
button.secondary {
  background-color: var(--button-secondary-color);
}

a.button.secondary:hover,
button.secondary:focus {
  background-color: var(--button-secondary-hover-color);
}

main input {
  font-size: 1.25rem;
  width: 100%;
  max-width: 50rem;
  display: block;
  margin-bottom: 1rem;
  padding: 0.75rem 0.6rem;
  border-radius: 0.25rem;
  box-sizing: border-box;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: var(--background-color);
}

form input,
form textarea,
form select {
  border: none;
  border-bottom: 2px solid var(--text-color);
  font-family: var(--body-font-family);
  outline: none;
  border-radius: unset;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 1.625rem 0.75rem 0.375rem 1rem;
  line-height: 1.25rem;
  font-size: 1.125rem;
}

main input:hover {
  border: 1px solid var(--text-color);
}

main blockquote {
  font-style: italic;
  margin: 3rem;
  text-indent: -1rem;
  hanging-punctuation: first;
}

main blockquote p::before {
  content: '“';
  line-height: 0;
}

main blockquote p::after {
  content: '”';
  line-height: 0;
}

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

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

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

main .section {
  padding: 1.875rem;
}

.section > div {
  max-width: 73.123rem;
  margin: auto;
}

/* section metadata */
main .section.teal-bg,
main .section.teal {
  background-color: #007680;
  color: white;
}

main .section.teal-bg a:any-link,
main .section.teal a:any-link {
  color: white;
}

main .section.teal-bg a:hover,
main .section.teal a:hover {
  color: aqua;
}

main .section.light-teal-bg,
main .section.light-teal {
  background-color: #d6f7fa;
}

main .section.palegray {
  background-color: #edf5fb;
}

main .section.gray-bg,
main .section.lightcool,
main .section.lightgray {
  background-color: #e7e9ea;
}

main .section.light-gray-bg,
main .section.lightergray {
  background-color: #fbfbfb;
}

main .section.warm-white-bg,
main .section.cream {
  background-color: #fff1d6;
}

main .section.light-blue-bg {
  background-color: #d6f7fa;
}

.section.text-center-block > div {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
}

.text-center-block h4 {
  grid-column: span 3;
}

.section.text-center-block p {
  grid-column: 2;
}

main .section.highlight {
  font-family: var(--heading-font-family);
  text-align: center;
  padding-top: 3.075rem;
  padding-bottom: 3.075rem;
}

main .section.highlight p {
  font-size: var(--body-font-size-s);
  line-height: 1.938rem;
  margin-top: 0;
  margin-bottom: 0;
}

main .section.block-with-header,
main .columns.block-with-header {
  margin: 2.5rem auto;
  max-width: 71rem;
  padding: 0;
}

.columns.block-with-header > div {
  align-items: flex-start;
}

main .columns.gray-border div div {
  border: 0.1875rem solid #e5e5e5;
  border-radius: 10px;
}

body.blog-post main .section > div {
  margin: 1.25rem auto;
  font-size: 1.125rem;
  padding: 0 0.9375rem;
}

main .section.block-with-header .columns > div > div {
  padding: 1rem;
}

main .section.block-with-header .footnotes-links > div > div {
  padding: 0;
  text-align: center;
}

.section.block-with-header .columns-wrapper .columns > div {
  align-items: flex-start;
}

main .section.gray-border {
  border: 0.1875rem solid #e5e5e5;
  border-radius: 10px;
}

main .section.teal-border {
  border: 0.1875rem solid #007680;
  border-radius: 10px;
}

main .section.no-radius {
  border-radius: unset;
}

/* Theme for pages with headings aligned to the left */
.headings-left h1,
.headings-left h2,
.headings-left h3,
.headings-left h4,
.headings-left h5,
.headings-left h6 {
  text-align: left;
}

.headings-left-revert-in-narrow h1,
.headings-left-revert-in-narrow h2,
.headings-left-revert-in-narrow h3,
.headings-left-revert-in-narrow h4,
.headings-left-revert-in-narrow h5,
.headings-left-revert-in-narrow h6 {
  text-align: center;
}

@media (width >=768px) {
  .headings-left-revert-in-narrow h1,
  .headings-left-revert-in-narrow h2,
  .headings-left-revert-in-narrow h3,
  .headings-left-revert-in-narrow h4,
  .headings-left-revert-in-narrow h5,
  .headings-left-revert-in-narrow h6 {
    text-align: left;
  }
}

body.blog-post main h1,
body.blog-post main h2,
body.blog-post main h3,
body.blog-post main h4,
body.blog-index main h1,
body.blog-index main h2,
body.blog-index main h3,
body.blog-index main h4 {
  text-align: left;
}

.section.middle-tight h6 {
  font-size: var(--heading-font-size-m);
  line-height: var(--heading-line-height-m);
  font-weight: normal;
  margin-left: 5vw;
  margin-right: 5vw;
}

body.blog-post main h1 {
  font-size: 2.1875rem;
  line-height: 2.813rem;
  font-weight: 300;
}

body.blog-post main h2 {
  font-size: 1.625rem;
  line-height: 2.25rem;
}

main .section.teal-bg,
main .section.teal-bg h2,
main .section.teal-bg h3,
main .section.teal h4,
main .section.teal-bg h6 {
  color: white;
}

body.blog-post main .sharing-container a:any-link {
  font-family: var(--body-font-family);
}

main .section.heading-light h2 {
  font-size: 18px;
  font-weight: 100;
  line-height: 1.938rem;
}

main .columns.block-with-header div div h2 {
  background-color: #007680;
  margin: 0;
  padding: 0.5rem 0.5rem 0.625rem;
  border-radius: 6px 6px 0 0;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 3.125rem;
  text-align: center;
}

main .section.block-with-header.block-with-header-description h2 {
  padding-top: 2rem;
}

main .section.block-with-header > div > h2:first-of-type {
  background-color: #007680;
  margin: 0;
  padding: 0.5rem 0.5rem 0.625rem;
  border-radius: 6px 6px 0 0;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 3.125rem;
  text-align: center;
}

main .section.p-center > div > p {
  text-align: center;
}

main .columns.block-with-header div div p,
main .section.block-with-header .default-content-wrapper p {
  display: block;
  margin: 0;
}

main .section.block-with-header .columns-wrapper p,
main .columns.block-with-header div div p:not(:first-of-type) {
  display: block;
  margin: 0.625rem 0;
  text-align: center;
  padding-top: 1.875rem;
  line-height: 1.5625rem;
}

main
  .section.block-with-header.block-with-header-description
  > div
  > p:first-of-type {
  background-color: #007680;
  color: #fff;
  text-align: center;
  padding-bottom: 2rem;
}

main .columns.block-with-header div div :first-child img,
main .section.block-with-header .default-content-wrapper :first-child img {
  width: 100%;
  height: auto;
  max-height: unset;
  min-height: unset;
}

main .columns.block-with-header div div strong,
main .section.block-with-header .columns-wrapper strong {
  display: block;
  padding: 0 3.125rem;
  font-weight: normal;
  line-height: 1.5625rem;
}

main .emphasis-red em {
  color: var(--button-primary-color);
  font-style: normal;
}

main .emphasis-teal em {
  color: var(--button-secondary-color);
  font-style: normal;
}

main .section.highlight p em {
  display: block;
  font-size: 2.5rem;
  font-style: normal;
  line-height: 1.2;
}

main .columns.block-with-header div div em {
  text-align: center;
  padding: 0 1rem;
}

main .columns.block-with-header div div em,
main .section.block-with-header .columns-wrapper em {
  display: block;
  font-style: normal;
  text-align: left;
  font-size: 0.625rem;
  line-height: 1.5625rem;
}

a[href$='.pdf']::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background-image: url('/icons/pdficon.png');
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  main .section.block-with-header,
  main .columns.block-with-header div {
    margin: 2.5rem 1rem;
  }
}

@media (max-width: 768px) {
  main .section.block-with-header h2 {
    line-height: 1.938rem;
  }

  main .section.block-with-header .footnotes-links > div > div {
    width: 100%;
  }
}

@media (min-width: 768px) {
  main .columns.block-with-header div {
    padding-right: unset;
    padding-left: unset;
  }

  main .section.block-with-header .columns > div {
    align-items: center;
    flex-direction: unset;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Blog post styles */
body.blog-post main .section {
  padding: 0.9375rem;
}

body.blog-post main picture {
  display: flex;
  justify-content: center;
}

body.blog-post .default-content-wrapper p.author {
  font-family: var(--heading-font-family);
  font-size: 1.3125rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  body.blog-post main .section {
    padding: 1.875rem;
  }

  main .section.highlight p {
    font-size: 1.625rem;
    line-height: 2.25rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  main .section.highlight p em {
    display: inline;
    font-size: 3rem;
    line-height: 3.625rem;
  }

  main .section.heading-light h2 {
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 2.25rem;
  }

  .section.sitemap ul:first-child {
    grid-auto-flow: column;
  }
}

.icon-paw {
  padding-left: 10px;
}

main .section.about-us ~ div.teal-bg h3 {
  text-align: center;
  margin-bottom: 0;
  color: white;
}

main .section.about-us + div.section {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -9px;
}

main .section.about-us ~ div.teal-bg.highlight {
  padding-bottom: 0;
}

a[target="_blank"]:not([href*="tel:"]):not([href$=".pdf"]):not([href^="https://www.24petwatch.com"]):not([href^="https://24petwatch.com"]):not([href^=localhost]):not([href^="/"]):not([href*="mailto:"]):not([href*="petmicrochiplookup.org"])::after
{
  display: inline-block;
  font-family: 'Font Awesome 6 Pro', sans-serif;
  content: '';
  width: 10px;
  height: 10px;
  padding-left: 5px;
  padding-right: 0.5em;
}

/* Unified styles for forms */
form {
  border: 0.1875rem solid var(--button-secondary-color);
  border-radius: 0.625rem;
  padding: 0 2rem 1rem;
  margin: 1.25rem auto;
  max-width: 71rem;
}

form .error-message {
  color: var(--error-color);
  font-size: 0.75rem;
  line-height: 1.313rem;
  padding: 0.25rem 0 0.25rem 0.625rem;
}

form .error-message.general-error-message {
  display: none;
}

form.submission-message {
  display: flex;
  justify-content: center;
  background-color: var(--button-secondary-color);
  color: var(--background-color);
  font-weight: 600;
  padding: 2rem;
}

form .wrapper {
  margin-top: 2.25rem;
  position: relative;
}

form select {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem 1rem 1rem 0.7rem;
}

form textarea {
  box-sizing: border-box;
  min-height: 9rem;
}

form input:hover,
form textarea:hover,
form select:hover {
  border: unset;
  border-bottom: 2px solid var(--text-color);
}

form input:focus,
form textarea:focus,
form select:focus,
form input:valid,
form textarea:valid {
  border-bottom: 0.125rem solid var(--button-secondary-color);
}

form .wrapper.error > input,
form .wrapper.error > textarea {
  border-bottom: 2px solid var(--error-color);
}

form .wrapper.error > input:focus,
form .wrapper.error > textarea:focus {
  border-bottom: 2px solid var(--link-color);
}

form .wrapper span.checkmark {
  display: inline-block;
  position: absolute;
  bottom: 1rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0;
  content: url('/icons/checked-circle.svg');
}

form .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
}

form .flex-wrapper .radio-wrapper {
  flex-basis: 0;
  flex-grow: 1;
  width: 50%;
}

form .flex-wrapper .radio-wrapper:first-of-type {
  padding-right: 0.3125rem;
  padding-left: 0;
}

form .flex-wrapper .radio-wrapper:last-of-type {
  padding-left: 0.3125rem;
  padding-right: 0;
}

form label {
  color: var(--button-secondary-color);
  padding: 1rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  box-sizing: border-box;
  transition: all 0.2s;
  touch-action: manipulation;
}

form .flex-wrapper > label {
  width: 100%;
}

form .wrapper-text-center {
  display: flex;
  justify-content: center;
}

form input:focus ~ label,
form input:not(:placeholder-shown) ~ label,
form textarea:focus ~ label,
form textarea:not(:placeholder-shown) ~ label {
  transform: scale(0.85);
  transform-origin: 0 0;
  padding-top: 10px;
  padding-left: 18px;
  line-height: 0.85rem;
}

form .flex-wrapper > .radio-wrapper > label {
  display: block;
  position: relative;
  padding: 1rem;
  border: 0.125rem solid var(--button-secondary-color);
  border-radius: 0.375rem;
  cursor: pointer;
  text-align: center;
}

form .flex-wrapper > .radio-wrapper > input[type='radio']:checked + label {
  background-color: var(--button-secondary-color);
  color: var(--background-color);
}

form .radio-wrapper > input[type='radio'] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

form label.float-label {
  position: absolute;
  top: 0;
  left: 0;
}

form input::placeholder,
form textarea::placeholder {
  color: transparent;
}

form input:focus::placeholder,
form textarea:focus::placeholder {
  color: var(--button-secondary-color);
}

form #image-file-label {
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--button-secondary-color);
}

form div.file-info {
  padding-left: 0.625rem;
}

form #image-file {
  display: none;
}

form #image-file-wrapper {
  text-align: center;
  cursor: pointer;
  border: 0.125rem solid var(--button-secondary-color);
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  margin: 1.25rem 0;
}

form button.red {
  background-color: var(--button-primary-color);
}

form button.red:hover {
  background-color: var(--button-primary-hover-color);
}

form button.teal {
  background-color: var(--button-secondary-color);
}

form button.teal:hover {
  background-color: var(--button-secondary-hover-color);
}

/* Theme for pages with content aligned to the center */
.content-center {
  text-align: center;
}

.content-center-revert-in-wide {
  text-align: center;
}

@media (width >=768px) {
  .content-center-revert-in-wide {
    text-align: left;
  }
}

.telephone-white a[href^='tel:'] {
  color: white;
}

.section.text-concern {
  text-align: center;
  background-color: var(--background-color-secondary);
  font-size: 1.3rem;
  padding: 1rem;
}

.section.text-large {
  font-size: 1.3rem;
}

.section.padding-tight {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.section.no-bottom-padding {
  padding-bottom: 0;
}

.section.sitemap ul:first-child {
  display: grid;
  grid-auto-columns: 1fr;
  gap: 1rem;
  padding-right: 2rem;
}

.section.sitemap ul:first-child > li {
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 1rem;
  background-color: #f5f5f5;
  align-self: start;
}

.section.sitemap ul:first-child > li > a:first-child {
  border-bottom: 2px solid #e3e3e3;
}

.horizontal-line-after::after {
  content: '';
  display: block;
  border-bottom: 1px solid #000;
  width: 100%;
  margin-top: 10px;
}

main .section.flex-center .default-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .section.petwatch-notice {
  h5 {
    color: white;
  }

  a.button.primary {
    width: 295px;
    height: 48px;
    padding: 0.6em;
    margin-bottom: 0 !important;
  }
}
