@font-face {
  font-family: Woodchuck;
  src: url('../fonts/Woodchuck-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Woodchuck;
  src: url('../fonts/Woodchuck-Thin.woff2') format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Woodchuck;
  src: url('../fonts/Woodchuck-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Woodchuck;
  src: url('../fonts/Woodchuck-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Woodchuck;
  src: url('../fonts/Woodchuck-Heavy.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Streetwear;
  src: url('../fonts/Streetwear.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Hansief;
  src: url('../fonts/Hansief.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Cabin, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Woodchuck, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
}

h3 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Hansief, Impact, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Woodchuck, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
}

a {
  text-decoration: underline;
}

li {
  margin-bottom: 5px;
}

img {
  max-width: 100%;
  display: inline-block;
}

.body {
  min-height: 100%;
}

.hero {
  z-index: 10;
  background-image: linear-gradient(#0000, #000000cf), url('../images/chewy-test.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  height: 80vh;
  padding: 60px;
  display: flex;
}

.hero.tail-end {
  display: block;
}

.navbar {
  z-index: 999;
  background-color: #ace4e6;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  font-family: Cabin, sans-serif;
  position: sticky;
  inset: 0% 0% auto;
  box-shadow: 1px 1px 9px #000000a6;
}

.navbar.home-nav {
  box-shadow: none;
  background-color: #ffffff8f;
  border-bottom: 2px solid #000;
}

.nav-menu {
  color: #000;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
}

.nav-link {
  letter-spacing: 1px;
  font-family: Hansief, Impact, sans-serif;
  font-weight: 700;
}

.nav-link.w--current {
  color: #000;
}

.nav-link.mobile-nav-only {
  display: none;
}

.nav-link.home-nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

.intro {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 46px;
}

.button {
  text-align: center;
  text-transform: uppercase;
  background-color: #255954;
  border: 1px #ebe0e0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Hansief, Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  box-shadow: 3px 3px 3px -2px #000;
}

.button:hover {
  background-color: #3a8c7d;
  box-shadow: 3px 3px 19px -2px #3d3d3d;
}

.button:active {
  box-shadow: none;
  background-color: #000;
}

.button.on-dark {
  box-shadow: none;
  color: #000;
  background-color: #fff;
  border: 2px solid #fff;
}

.thick-black {
  text-align: center;
  background-color: #fff;
  border: 16px solid #000;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  box-shadow: 1px 1px 8px #00000070;
}

.thick-black.note {
  width: 700px;
}

.thick-black.less-padding {
  border-color: #f0f0f0;
  width: 100%;
  height: 45vw;
  padding: 40px;
}

.thick-black.smaller-callout {
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.blurb {
  text-align: left;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.content-section {
  background-color: #d8f5f2;
  background-image: linear-gradient(#0000 87%, #c8fae8);
  padding-top: 100px;
  padding-bottom: 60px;
}

.content-section.more-youll-like {
  text-align: center;
  background-image: none;
  padding-left: 40px;
  padding-right: 40px;
}

.content-section.gradient-back {
  z-index: 10;
  text-align: center;
  background-color: #0000;
  background-image: linear-gradient(#0000 1%, #d8f5f2 9% 30%);
  padding-top: 20px;
  position: relative;
}

.icon {
  background-image: url('../images/FB-profile-pic_mint-silhouette.png');
  background-position: 50%;
  background-size: cover;
  border: 3px solid #000;
  border-radius: 200px;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.email-sign-up {
  z-index: 999;
  background-color: #fff;
  border: 11px solid #cac8c8;
  width: 800px;
  min-width: 600px;
  margin: 40px auto;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
  box-shadow: 5px 5px 7px -3px #000000b8;
}

.logo {
  margin-bottom: 20px;
}

.logo-horizontal-small {
  background-image: url('../images/cardi-hardy-logo_centered-1line_500.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 100px;
  margin: 10px auto 15px;
}

.close-link-block {
  z-index: 1000;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  padding: 10px;
  font-family: Hansief, Impact, sans-serif;
  display: inline-block;
}

.close-link-block:hover {
  color: #255954;
}

.highlighted-text {
  color: #fff;
  background-color: #1e4040;
  padding-left: 5px;
  padding-right: 5px;
}

.html-embed {
  height: 90%;
  overflow: scroll;
}

.showcase {
  background-color: #f0f0f0;
  padding: 100px 60px;
}

.tile-product {
  text-align: center;
  background-color: #fff;
  border: 1px solid #707070;
  margin-bottom: 20px;
}

.tile-text {
  margin: 0 20px 20px;
}

.tile-see-more-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  display: block;
}

.tile-see-more-link:hover {
  opacity: .7;
}

.price {
  font-style: italic;
  font-weight: 600;
}

.price.for-collections {
  display: inline;
}

.product-heading {
  text-transform: none;
  margin-top: 10px;
  font-family: Cabin, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.link {
  display: block;
}

.section {
  background-color: #b6d2d3;
  background-image: linear-gradient(to top, #c8fae8, #d8f5f2);
  padding: 60px 40px;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-2.footer-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
}

.footerlink {
  color: #255954;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: underline;
  display: block;
}

.footerlink.social-media-icon {
  background-image: url('../images/facebook-icon_drk-green2x.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 28.25px;
  padding-left: 35px;
}

.footerlink.social-footer {
  align-items: center;
  display: flex;
}

.grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: .5px solid #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-3.on-section {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 1050px;
  margin: 100px auto 20px;
}

.home-tiled {
  border: .5px solid #222;
  border-radius: 0;
  width: 350px;
  height: 350px;
}

.home-tiled:hover {
  filter: blur(2px);
  box-shadow: 1px 1px 10px -4px #000000bf;
}

.home-tiled.hide-on-desktop {
  display: none;
}

.hansief {
  letter-spacing: 3px;
  font-family: Hansief, Impact, sans-serif;
  font-weight: 400;
}

.top-banner-alert {
  color: #ff775b;
  text-align: center;
  background-color: #1e4040;
  padding: 5px 60px;
  font-family: Cabin, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.script {
  font-family: Streetwear, Georgia, sans-serif;
  font-size: 12px;
  display: inline;
}

.quick-text {
  margin-bottom: 9px;
  display: inline;
}

.synced-product-info {
  text-align: center;
}

.product-pg-synced-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.product-pg-synced-section.gradiant-fade-bottom {
  background-color: #fff;
  background-image: linear-gradient(#0000, #d8f5f2);
}

.shopify-embed {
  width: 940px;
  max-height: 80%;
  overflow: auto;
}

.may-also-item {
  text-align: center;
  background-color: #fff;
  border: .5px solid #000;
  flex-flow: column wrap;
  padding: 10px;
  display: flex;
}

.link-blocked {
  color: #255954;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  display: block;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
}

.gridded {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: .5px solid #839dae;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: stretch center;
  display: grid;
}

.tile-product-layout, .manual-tiles {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.c-accordion-item {
  background-color: #fff;
  margin-bottom: 10px;
}

.accordion-item-q-text {
  color: #000;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.8em;
}

.c-accordion-item-q-text {
  flex: 1;
  align-items: center;
  padding: 20px;
  display: flex;
}

._w-accordion-item-q {
  display: flex;
}

.accordion-item-a-text {
  color: #666;
  margin-bottom: 5px;
}

.accordion-item-a-text.inline-text {
  flex: 0 auto;
  min-height: 22px;
  display: inline;
}

.accordion-content-divider {
  border-bottom: 1px dashed #3333;
  width: 100%;
  height: 0;
}

._w-accordion-item {
  cursor: pointer;
  border: 6px solid #e7e7e7;
  transition: all .25s;
  box-shadow: 1px 1px 15px #13131326;
}

._w-accordion-item:hover {
  border-style: solid;
  border-color: #000;
  box-shadow: 1px 1px 15px #001e1fbf;
}

.accordion-item-q-icon-stripe-2 {
  background-color: #255954;
  width: .3em;
  height: 100%;
  position: absolute;
}

.c-accordion-item-a {
  overflow: hidden;
}

._w-accordion-item-q-icon {
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  position: relative;
}

.accordion-item-q-icon-stripe-1 {
  background-color: #255954;
  width: 100%;
  height: .3em;
  position: relative;
}

.c-accordion-list {
  margin-bottom: 40px;
}

._w-accordion-item-a {
  padding: 20px 20px 30px;
}

._w-accordion-item-a.child-align {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.c-accordion-item-q-icon {
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

._w-accordion-content-divider {
  padding-left: 20px;
  padding-right: 20px;
}

.green-section {
  background-color: #ace4e6;
  margin-top: auto;
  padding-top: 140px;
}

.green-section.gradient-back {
  background-color: #d4edee;
  padding-top: 60px;
}

.heading-3 {
  font-weight: 400;
}

.general-info {
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  text-align: left;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  place-items: start center;
  padding-top: 20px;
  padding-bottom: 40px;
  display: grid;
}

.nondescript-button {
  text-align: center;
  background-color: #1e4040;
  font-size: 16px;
  font-weight: 600;
}

.hero-callout {
  color: #fff;
  text-align: center;
  width: 65%;
  font-weight: 700;
}

.hero-callout.wider {
  width: 80%;
}

.page-section-links {
  background-color: #fff;
  justify-content: center;
  display: flex;
  position: static;
  inset: auto 0% 0%;
}

.simple-link {
  color: #1e4040;
  letter-spacing: 1px;
  background-color: #0000;
  border: 3px solid #0000;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.simple-link:hover {
  border-bottom-style: solid;
  border-bottom-color: #1e4040;
}

.simple-link:focus {
  border-bottom-color: #1e4040;
}

.product-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.product-list.half-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.product-list.mobile-only {
  display: none;
}

.shopify-info {
  margin-left: auto;
  margin-right: auto;
}

.category-section {
  padding: 60px 40px 20px;
}

.light-outline {
  text-align: center;
  border: .5px solid #b8b8b8;
  flex-direction: column;
  align-items: stretch;
  padding: 10px 10px 15px;
  display: flex;
}

.light-outline.v2_light-outline {
  align-items: center;
  padding-top: 15px;
}

.page-hero {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#00000091, #0000), url('../images/cardigan-yellow-flowers_2048.jpg');
  background-position: 0 0, 50% 20%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 300px;
  padding-top: 140px;
  padding-bottom: 100px;
  font-size: 24px;
  line-height: 32px;
}

.page-hero.onfaq {
  background-image: linear-gradient(#00000091, #0000), url('../images/chewy-guard-shore-background_2048.jpg');
  background-position: 0 0, 50%;
}

.page-hero.contact-background {
  color: #000;
  text-align: left;
  background-image: linear-gradient(#0000 71%, #fff), url('../images/chewy-snow-ball.jpg');
  background-position: 0 0, 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 80vh;
  margin-top: 50px;
  margin-bottom: -20vh;
}

.page-hero.about-hero {
  color: #000;
  background-image: none;
  padding-bottom: 0;
}

.page-hero.different-back {
  background-image: url('../images/chillin-logo-header-image_left_1200.jpg'), linear-gradient(#00000091, #0000), url('../images/cardigan-yellow-flowers_2048.jpg');
  background-position: 50%, 0 0, 50% 20%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: cover, auto, cover;
  width: 100vw;
}

.page-hero.about-pg {
  background-color: #1e4040;
  background-image: linear-gradient(#00000091, #0000);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  display: flex;
}

.page-title {
  font-family: Streetwear, Georgia, sans-serif;
  font-size: 60px;
  line-height: 80px;
}

.simple-nav {
  position: relative;
  inset: 0% 0% auto;
}

.basic-button {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #212226;
  border: 5px solid #212226;
  margin: 10px auto 20px;
  padding: 10px 20px;
  font-family: Hansief, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  box-shadow: 2px 2px 5px -2px #000000c2;
}

.basic-button:hover {
  color: #ace4e6;
  background-color: #000;
  border-color: #ace4e6;
}

.basic-button:active {
  color: #212226;
  background-color: #ace4e6;
}

.basic-button.differentiated {
  color: #212226;
  background-color: #fff;
  border: 5px solid #002627;
  border-top-color: #212226;
  font-family: Hansief, Impact, sans-serif;
  font-weight: 400;
  transform: translate(0);
}

.basic-button.differentiated:hover {
  background-color: #aec4e6;
}

.basic-button.differentiated:active {
  color: #aec4e6;
  background-color: #212226;
  border-color: #aec4e6;
}

.centered {
  text-align: center;
}

.size-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 20px;
}

.size-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.size-block {
  background-color: #fff;
  padding: 20px 5px 10px;
  box-shadow: 1px 1px 15px #13131326;
}

.smaller-on-mobile {
  text-align: left;
}

.dropdown-link {
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #000;
  border-width: 2px 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Hansief, Impact, sans-serif;
}

.dropdown-link.w--current {
  color: #255954;
}

.hidden-buy-button {
  display: none;
}

.dropdown-toggle {
  font-family: Hansief, Impact, sans-serif;
  font-weight: 700;
}

.dropdown-toggle:hover {
  color: #a5b3b3;
  background-color: #1e4040;
}

.brand {
  margin-top: 10px;
}

.flex-section {
  flex-direction: row;
  align-items: flex-start;
  padding: 100px 40px;
  display: flex;
}

.email-list-sign-up {
  color: #d6d6d6;
  text-align: center;
  background-color: #7ca5a6;
  background-image: linear-gradient(#fff, #0000 67%), linear-gradient(#0000, #c8fae8);
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 20px;
  line-height: 24px;
}

.email-list-sign-up.on-all-products {
  background-image: linear-gradient(#eaeeee, #0000 67%), linear-gradient(#0000, #c8fae8);
}

.email-embed {
  text-align: center;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.new-footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: stretch;
  padding: 0 40px;
  display: grid;
  position: absolute;
}

.container-2 {
  color: #201f1f;
}

.join-our-pack-wrapper {
  background-color: #fff;
  border: 6px solid #000;
  width: 600px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.new-footer-section-wrapper {
  border: 1px solid #000;
  border-right-style: none;
  flex: 1;
  padding: 10px 20px;
  font-size: 16px;
}

.footer-mailchimp-field {
  border: 1px solid #000;
  min-width: 200px;
  padding: 8px 5px;
  font-family: Cabin, sans-serif;
  display: inline-block;
}

.footer-mailchimp-field.popup {
  min-width: 300px;
}

.footer-mc-button {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  border: 1px solid #000;
  padding: 8px 20px;
  font-family: Cabin, sans-serif;
  font-weight: 700;
  display: inline-block;
}

.new-footer-link {
  color: #255954;
  background-image: url('../images/green-paw2x.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 18px;
  border-bottom: 2px solid #fff;
  margin-bottom: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 25px;
  font-family: Cabin, sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.new-footer-link:hover {
  color: #002627;
  border-bottom-color: #002627;
}

.new-footer-link.instagram-icon {
  background-image: url('../images/instagram-drk-green2x.png');
  background-size: 30px;
  margin-top: 10px;
  padding-left: 36px;
}

.new-footer-link.facebook-icon {
  background-image: url('../images/facebook-icon_drk-green2x.png');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 30px;
  margin-top: 10px;
  padding-left: 36px;
}

.html-embed-2 {
  flex: 1;
  align-self: center;
}

.spacer {
  height: 30px;
}

.mc2-form {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}

.mc2-field-label {
  margin-right: 10px;
  display: inline-block;
}

.mc2-text-field {
  display: inline-block;
}

.hidden-iframe {
  display: none;
}

.dl8r_styled-embed-wrapper {
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  align-self: stretch;
  align-items: center;
  margin: 10px 5px 20px;
  padding: 10px 5px;
  display: flex;
  box-shadow: 3px 3px 6px -2px #00000059;
}

.gridded_non-cms {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: .5px solid #839dae;
  border-radius: 3px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: stretch stretch;
  margin-bottom: 20px;
  display: grid;
}

.footer-textheader {
  color: #255954;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}

._20px-vertical-space {
  height: 20px;
}

.home-background {
  background-color: #99e4dc;
  background-image: linear-gradient(#0000 20%, #99e4dc 30%);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
}

.background-img-home {
  z-index: 5;
  text-shadow: 1px 1px 6px #000;
  background-image: linear-gradient(to right, #000000b3 25%, #0000 61% 78%), url('../images/chewy-centered-bridge_2080.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 80vh;
  position: absolute;
  inset: 0% 0% auto;
}

.home-callout {
  width: 800px;
  margin: 40px auto 20px;
}

.subheading {
  color: #6d6d6d;
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-top: 1px solid #000;
  width: 330px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  font-size: 17px;
  display: block;
}

.img-with-tagline {
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.padding {
  display: none;
}

.right-padding {
  margin-right: 8px;
}

.addy-img {
  margin-left: 5px;
  margin-right: 5px;
}

.tiny-copyright {
  border-top: 1px solid #000;
  margin-top: 40px;
  padding-top: 10px;
  font-size: 10px;
  line-height: 14px;
}

.tiny-copyright.sale-footnote {
  border-top-style: none;
  border-bottom: 1px #000;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 12px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.preloader {
  z-index: 9999999;
  color: #0c4427;
  background-color: #e9e9e9;
  justify-content: center;
  align-items: center;
  font-size: 43px;
  font-weight: 700;
  line-height: 50px;
  display: block;
  position: fixed;
  inset: 0%;
}

.ball {
  background-color: #d60202;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: auto 10px;
  box-shadow: 1px 1px 3px #000;
}

.story-section {
  margin-left: 5vw;
  margin-right: 5vw;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.story-section.gradiant {
  background-image: linear-gradient(#aae3b8, #0000);
}

.story-section.centered-section {
  text-align: center;
  padding-bottom: 10vw;
}

.story-container {
  width: 90vw;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.col-container {
  flex-direction: column;
  display: flex;
}

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

.section-col {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.sticky-area {
  width: 100%;
  max-width: 960px;
  margin-bottom: 40px;
  padding: 20px;
  position: sticky;
  top: 100px;
}

.content-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.copy-chunk {
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
}

.extra-big {
  font-size: 44px;
  line-height: 48px;
}

.short-divider {
  background-color: #cacaca;
  width: 40px;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.more-info {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.link-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.outline-link {
  padding-top: 20px;
}

.column-container {
  grid-column-gap: 25px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 12.5vw;
  padding-right: 12.5vw;
  display: grid;
}

.padded-section {
  padding-top: 10vw;
  padding-bottom: 10vw;
  font-size: 18px;
  line-height: 24px;
}

.icon-link {
  color: #000;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hero-text {
  width: 38vw;
  margin-left: 12.5vw;
  position: relative;
  bottom: -151px;
  left: auto;
}

.commentary {
  text-align: left;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 34px;
}

.intro-card {
  text-align: center;
  background-color: #fff;
  border: 14px solid #000;
  flex-direction: column;
  flex: 1;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px 20px 10px;
  display: flex;
  box-shadow: 3px 3px 6px 1px #00000087;
}

.color-chonk {
  background-color: #fff;
  border-top: 1px #000;
  border-bottom: 1px #000;
  min-height: 80vh;
  display: flex;
}

.chonk-feature {
  align-self: center;
  width: 64vw;
  padding: 40px 5vw;
}

.feature-image {
  background-image: url('../images/jennie-NWTQH-shirt-crop_900-web.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40vw;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.mixed-case-link-block {
  text-align: center;
  background-color: #255954;
  margin: 10px 10px 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.mixed-case-link-block:hover {
  background-color: #3a8c7d;
  box-shadow: 2px 2px 6px #000000bd;
}

.mixed-case-link-block:active {
  color: #000;
  background-color: #c8fae8;
}

.resources-wrapper {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  transition: opacity .2s;
  display: block;
}

.peakaboo-section {
  background-image: url('../images/victory-park-butts_2048.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 50vh;
}

.peakaboo-section.home-section {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), url('../images/victory-park-butts_2048.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.peakaboo-section.new-photo {
  background-image: url('../images/tato-chewy-beach_1080.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.cols {
  column-count: 2;
  column-rule-style: solid;
  column-rule-width: 1px;
  column-gap: 46px;
  margin-top: 20px;
}

.big-callout {
  text-align: center;
  background-color: #d7f3de;
  border-top: 7px solid #000;
  border-bottom: 7px solid #000;
  padding: 7vw 12.5vw;
  font-size: 48px;
  line-height: 56px;
}

.big-callout.light-grn-back {
  color: #c9c9c9;
  background-color: #002627;
}

.medium-script {
  white-space: break-spaces;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Streetwear, Georgia, sans-serif;
  font-size: 28px;
  line-height: 32px;
}

.caption {
  text-align: left;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
}

.embed-container {
  min-height: 80vh;
  margin-bottom: 30px;
}

.product-section {
  padding: 60px;
}

.article-wrapper {
  align-items: stretch;
  width: 100%;
  min-height: 80vh;
  display: flex;
}

.article-content {
  width: 40%;
  padding: 40px;
}

.article-image {
  background-image: url('../images/jennie-NWTQH-shirt_crop_800px-web.jpg');
  background-position: 50%;
  background-size: cover;
  width: 60%;
}

.details-info {
  margin-bottom: 60px;
}

.smaller-paragraph {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
}

.full-width-photos {
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  grid-template-rows: 3fr 4fr;
  grid-template-columns: 7fr 3fr;
  grid-auto-columns: 1fr;
  width: 100vw;
  height: 60vh;
  display: grid;
}

.photo-collage {
  background-image: url('../images/follow-you_1800.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-collage.back-seat-buddies {
  background-image: url('../images/backseat-buddies_1000x723.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-collage.another-pic {
  background-image: url('../images/cliff-corgos_vert-crop_800w.jpg'), url('../images/follow-you_1800.jpg');
  background-position: 50% 100%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.below-embed {
  text-align: center;
  padding-top: 10px;
}

.product-page_key-info {
  padding-top: 40px;
}

.v2_category-wrapper.product-list {
  grid-template-rows: auto auto;
}

.v2_category-wrapper.product-list.longsleeve {
  grid-template-rows: auto;
}

.deets-container {
  max-width: 100vw;
  display: flex;
  overflow: hidden;
}

.mainbar-embed {
  min-width: 70vw;
  margin: 40px;
}

.sidebar {
  color: #fff;
  background-color: #000;
  flex: 1;
  width: 20vw;
  padding: 40px;
}

.sidebar.white-outlinedversion {
  color: #000;
  background-color: #f3f3f3;
  border-left: 1px #000;
}

.small-text {
  font-size: 12px;
  line-height: 18px;
}

.text-link {
  color: #1e4040;
  margin-bottom: 15px;
  font-weight: 700;
  display: block;
}

.html-embed-3 {
  background-color: #fff;
  min-height: 60vh;
}

.sticky-product-container {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.display-wrapper {
  border-left: 1px solid #000;
  flex-direction: column;
  align-items: flex-start;
  width: 50vw;
  padding: 40px 0 40px 40px;
  display: flex;
}

.display-wrapper.sticky {
  background-color: #fff;
  border-right-style: none;
  align-self: flex-start;
  width: 60%;
  height: 90vh;
  padding: 20px 0 20px 20px;
  position: sticky;
  top: 90px;
}

.info-wrapper {
  background-color: #8a7474;
  flex: 1;
  width: 50vw;
  padding: 40px;
}

.info-container {
  flex-direction: column;
  width: 100%;
  display: flex;
  position: sticky;
  top: 120px;
}

.big-sticky-img {
  background-image: url('../images/placeholder_chewy-licking-ball.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 60vw;
  height: 100vh;
  position: sticky;
}

.info-container-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.small-info-column {
  border-right: 1px solid #000;
  width: 40%;
  padding-top: 5vw;
  padding-bottom: 7vw;
  padding-right: 5vw;
}

.featured-image {
  margin-bottom: 20px;
}

.collection-container {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.collection-wrapper {
  background-color: #fff;
  border: 12px solid #000;
  padding: 20px 20px 0;
}

.details-text {
  font-size: 14px;
  line-height: 20px;
}

.selling-points {
  margin-bottom: 20px;
  padding-left: 15px;
}

.product-detail-heading {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.details-text-link {
  color: #255954;
  font-weight: 700;
}

.cardi-logo {
  background-image: url('../images/chillin-logo_1600-web.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
  align-self: stretch;
}

.lined-section {
  border-top: 1px solid #000;
  border-bottom: 1px #000;
  padding-left: 5vw;
  padding-right: 5vw;
}

.embed-detail-container {
  background-color: #fff;
  margin-bottom: 40px;
  padding: 20px;
}

.new-container {
  margin-top: 15px;
  margin-bottom: 15px;
}

.new-container.thick-black-frame-4-embed {
  text-align: center;
  border-color: #e0e0e0;
  margin-bottom: 60px;
}

.new-container.thick-black-frame-4-embed.grey-matte {
  background-color: #000;
  padding: 30px;
}

.new-margin-section {
  background-color: #eaeeee;
  padding: 60px 10vw 25px;
}

.new-margin-section.mug-page {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.new-margin-section.on-home {
  background-color: #fff;
  width: 100vw;
  padding-bottom: 60px;
}

.new-product-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: start center;
  place-items: stretch stretch;
  margin-top: 20px;
  display: grid;
}

.new-product-grid.t_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #000;
  place-content: start center;
  place-items: stretch stretch;
}

.new-product-grid.one-row-grid {
  grid-template-rows: auto;
  margin-top: 20px;
}

.new-product-grid._4x {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.new-product-grid.gift-card-grid {
  align-items: start;
}

.new-product-grid.tshirt-grid {
  grid-template-rows: 1fr 1fr auto;
}

.new-product-wrapper {
  color: #555;
  text-align: left;
  white-space: break-spaces;
  background-color: #fff;
  border: 2px #fff;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.new-product-wrapper:hover {
  box-shadow: 1px 1px 6px -1px #0009;
}

.new-product-wrapper:active {
  border-color: #dfdfdf;
}

.new-product-wrapper.t_wrapper {
  border-width: 1px;
  border-color: #000;
  padding: 10px 15px;
}

.new-product-wrapper.t_wrapper:hover {
  box-shadow: none;
}

.new-product-wrapper.for-embed {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.new-product-wrapper.shop-tile {
  align-items: stretch;
  padding: 10px 10px 8px;
}

.new-product-wrapper.gift-card {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.product-name {
  color: #000;
  text-transform: none;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Cabin, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

.gradient-transition {
  background-color: #d8f5f2;
  background-image: linear-gradient(#fff, #0000);
  height: 5vw;
  min-height: 40px;
}

.padded-mock {
  padding: 20px;
}

.more4you {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 30px;
  display: grid;
}

.more4u-wrapper {
  background-color: #fff;
  border: 1px solid #000;
  min-height: 60px;
  padding: 15px;
}

.header-wrapper {
  float: right;
  color: #000;
  text-align: left;
  width: 30vw;
  margin-right: 30px;
}

.hero_2col {
  border-bottom: 1px solid #000;
  justify-content: center;
  align-items: stretch;
  height: 75vh;
  display: flex;
}

.hero-pic {
  background-image: url('../images/white-cardigan-corgi-crewneck-sweatshirt_1200px.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-right: 1px solid #000;
  width: 50vw;
  height: 100%;
}

.hero-pic.about-hero-pic {
  background-image: url('../images/about-chewy_600x600.jpg'), url('../images/chewy-snow-ball.jpg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), url('../images/about-chewy_600x600.jpg'), url('../images/chillin-cardi_short-sleeve_columbia-blue_folded_800x800jpg.jpg');
  background-position: 50%, 50%, 0 0, 50%, 50%;
  background-repeat: no-repeat, no-repeat, repeat, no-repeat, no-repeat;
  background-size: cover, cover, auto, cover, cover;
  border: 1px #000;
  border-bottom-style: solid;
  align-self: stretch;
}

.hero-pic.faq {
  background-image: url('../images/chewy-guard-shore-background_2048.jpg'), url('../images/chillin-cardi_short-sleeve_columbia-blue_folded_800x800jpg.jpg');
  background-position: 50%, 50%;
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
}

.hero-pic.mug-hero {
  background-image: url('../images/laurel-seal-mug_red_web2.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.hero-pic.low-res {
  background-image: url('../images/ballin-short-sleeve-tshirt_1080-low.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-pic.sticker-hero {
  background-image: url('../images/sticker-mockup_1200px.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-pic.tshirtpage {
  background-image: url('../images/brindle-chalky-mint_2.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  flex: 0 auto;
  align-self: center;
  width: 50vw;
  padding: 80px;
}

.hero-content.znew-hero-color {
  background-color: #ace4e6;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 100%;
  padding: 40px;
  display: flex;
}

.callout-section {
  z-index: auto;
  color: #fff;
  text-align: center;
  background-color: #255954;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  position: sticky;
  top: 0;
}

.left-column {
  width: 50vw;
  padding-top: 20px;
  padding-bottom: 40px;
}

.caption-container {
  z-index: 100;
  background-color: #fff;
  flex: 0 auto;
  padding: 7px 10px 8px;
  position: relative;
}

.caption-container.shrink {
  flex: 0 auto;
}

.caption-container.grid-detailed {
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 3fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: start center;
  display: grid;
}

.smaller-mock {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.smaller-mock.zoom-on-mouseover {
  margin-top: 5px;
}

.zoom-on-mouseover {
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
}

.zoom-on-mouseover:hover {
  transform: translate(0, 15%)scale(1.5);
}

.zoom-on-mouseover.no-downward-zoom:hover {
  transform: scale(1.5);
}

.brighter-on-mouseover:hover {
  filter: brightness(120%);
  background-image: url('../images/cardigan-corgi-hat_green.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-pg-heading {
  margin-top: 0;
  font-size: 30px;
  line-height: 36px;
}

.image {
  float: none;
  clear: none;
}

.comparison-wrapper {
  justify-content: space-between;
  height: 45vw;
  margin: 20px -10px;
  display: flex;
}

.photo-content {
  color: #dbdbdb;
  background-color: #5c5c5c;
  background-image: linear-gradient(to right, #0000009c 22%, #0000 73%), url('../images/about-chewy_600x600.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.photo-content.right-contnet {
  background-image: linear-gradient(to top, #0000009c 26%, #0000 73%), url('../images/tato-pembroke-grass_small.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  justify-content: flex-end;
}

.photo-content.nwtqh {
  background-image: linear-gradient(#0000009c 34%, #0000), url('../images/stacked-cardigan-tshirt-in-dog-run_kelley-green.jpg'), url('../images/20210716_200746_web_600px.jpg');
  background-position: 0 0, 50%, 50%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: auto, cover, cover;
  justify-content: flex-end;
}

.photo-content.nwtqh:hover {
  filter: grayscale();
}

.photo-content.long-sleeve {
  background-image: url('../images/IMG_20210623_043911_1.jpg'), linear-gradient(#0000009c 34%, #0000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
}

.caption-block {
  width: 60%;
}

.caption-block.right-content {
  clear: none;
  width: 80%;
}

.intro-callout {
  text-align: center;
  background-color: #af9191;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 100vw;
  padding-top: 30px;
  padding-bottom: 30px;
}

.intro-callout-block {
  text-align: center;
  max-width: 60vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 28px;
}

.intro-callout-block.join-our-pack-wrapper {
  background-color: #0000;
  width: 90vw;
}

.featured-content {
  width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.featured-img {
  width: 40vw;
  height: 40vw;
}

.minimal-button {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #000;
  padding: 9px 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.minimal-button.home-light {
  border: 4px solid #aae3b8;
  padding: 10px 40px;
  font-family: Hansief, Impact, sans-serif;
  font-size: 22px;
  line-height: 26px;
}

.home-4up {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top-width: 1px;
  border-top-color: #000;
  border-bottom-width: 1px;
  border-bottom-color: #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
}

.home-tile-2 {
  flex: 1;
}

.home-tile-2:hover {
  filter: blur(2px);
}

._20px-padding-section {
  width: 100%;
  padding: 0 20px;
}

.extended-text {
  white-space: nowrap;
}

.photo-background {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#00000080, #00000080), linear-gradient(#00000070, #00000070), url('../images/tato-chewy-guard-shore-beach_2040.jpg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  border: 16px solid #000;
  padding: 8vw;
}

.photo-background.color-background {
  color: #252525;
  background-color: #aae3b8;
  background-image: none;
}

.contents-area {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nav-container {
  padding-left: 40px;
  padding-right: 40px;
}

.greensection {
  background-color: #d7f3de;
  border-top-color: #000;
  flex-direction: column;
  align-items: center;
  padding: 8vw 10vw;
  display: flex;
}

.newest-items-container {
  border: 12px solid #e0e0e0;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.grid-5 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #e0e0e0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: stretch;
}

.newest-wrapper {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 10px 20px;
  display: flex;
}

.special-attribute {
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #d7f3de;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

._1_hero-wrapper {
  background-color: #000;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

._1_hero-split {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  grid-template-rows: auto;
  height: 50vw;
  padding: 20px;
}

._1_hero-split.home-hero {
  height: 40vw;
  overflow: hidden;
}

._1_split-col-a {
  background-color: #fff;
}

._1_split-col-a.new-hero-img {
  background-color: #d3f3f0;
  background-image: url('../images/new-graphic_pastels.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

._1_split-col-a.new-hero-img.va-bg {
  background-image: url('../images/backseat-buddies_1000x723.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

._1_split-col-a.new-hero-img.home-xmas {
  background-image: url('../images/christmas-corgi_web-2.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

._1_split-col-a.new-hero-img.home-xmas:hover {
  background-image: url('../images/christmas-corgi_web.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

._1_split-col-a.fall-hero-img {
  background-image: url('../images/chewy-christmas-tree_square_1000.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

._1_split-col-b {
  background-color: #fff;
  align-items: center;
  padding: 80px;
  display: flex;
}

._1_split-col-b.less-padding {
  padding-left: 40px;
  padding-right: 20px;
  font-size: 18px;
}

._1_split-col-b.not-padding {
  padding: 40px;
}

.home-4up-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #000;
  border-top-width: 1px;
  border-top-color: #000;
  border-bottom-width: 1px;
  border-bottom-color: #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-left: 20px;
  margin-right: 20px;
  display: grid;
}

.home-4up-2.thick-black {
  background-color: #f5f5f5;
  border-top-width: 16px;
  border-bottom-style: solid;
  border-bottom-width: 16px;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 1px 1px 8px #00000070;
}

.framed-photos {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  height: 100%;
  display: grid;
  overflow: visible;
}

.photo-frame-1 {
  background-image: url('../images/IMG_20210623_043911_1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-frame-1.hover-attention:hover {
  filter: brightness(120%) saturate(135%);
}

.photo-frame-1.hover-attention.mug {
  background-image: url('../images/waggin-tails-corgi-mug-right_red_holiday-800rc.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-frame-1.hover-attention.hoodie {
  background-image: url('../images/pretty-cursive_light-blue_screen.jpg'), url('../images/IMG_20210623_043911_1.jpg');
  background-position: 50%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.photo-frame-2 {
  background-image: url('../images/chewy-summer_mobile-vjpg.jpg'), url('../images/chewy-christmas-tree_square_1000.jpg');
  background-position: 50%, 50%;
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
}

.photo-frame-2:hover {
  filter: saturate(110%) brightness(120%);
}

.photo-frame-2.tote {
  background-image: url('../images/tote-background.jpg');
  background-position: 50% 100%;
  background-repeat: repeat;
  background-size: cover;
}

.hero_2col-2 {
  border-bottom: 1px solid #000;
  justify-content: center;
  align-items: center;
  height: 75vh;
  display: flex;
}

.hero_2col-2.content-home {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #000;
  border-bottom-style: none;
  border-bottom-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 80vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  font-size: 18px;
  line-height: 24px;
  display: grid;
}

.hero-pic-2 {
  background-image: url('../images/chillin-cardi_short-sleeve_columbia-blue_folded_800x800jpg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-right: 1px solid #000;
  width: 50vw;
  height: 100%;
}

.hero-pic-2.family-pic {
  background-image: url('../images/cape-charles-corgs-LOVE_1000.jpg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, auto;
  border: 1px #000;
  width: auto;
}

.white-frame {
  background-color: #f5f5f5;
  padding: 16px;
}

.light-green {
  background-color: #d4f0db;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.subscription-cta {
  text-align: center;
  background-color: #fff;
  border: 9px dashed #000;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 20px 0;
  font-family: Cabin, sans-serif;
  box-shadow: 4px 4px 4px #000;
}

.cta-background {
  z-index: 999;
  background-color: #2424249e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0%;
}

.short-field {
  width: 80px;
}

.close-box {
  z-index: 900;
  float: right;
  background-color: #fff;
  background-image: url('../images/close-x-only2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-right: -10px;
}

.cta-big-type {
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Hansief, Impact, sans-serif;
  font-size: 60px;
  line-height: 70px;
}

.cta-subscribe-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.section_new-prod-deets {
  background-color: #fff;
  border: 20px solid #e0e0e0;
  height: 90vh;
  padding: 20px;
  position: sticky;
  bottom: 0;
  overflow: scroll;
}

.section_new-prod-deets.hide-quick {
  display: block;
}

.section_new-prod-deets.not-sticky {
  height: auto;
  min-height: 90vh;
  position: static;
  overflow: visible;
}

.section_new-prod-deets.not-sticky.v3 {
  position: sticky;
  top: 60px;
  bottom: auto;
}

.new-embed-wrapper {
  background-color: #fff;
}

.product-navigation {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.you-are-here-text {
  color: #000;
  margin-bottom: 15px;
  margin-right: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.you-are-here-text:visited {
  color: #255954;
}

.minimal-nav {
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-color: #dddddd4d;
  position: fixed;
}

.minimal-nav.opt3 {
  background-color: #f3abab;
}

.minimal-nav-container {
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 3fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.minimal-nav-menu {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 12px;
  line-height: 16px;
}

.min-nav-link {
  text-align: center;
  text-transform: none;
  margin-left: auto;
  margin-right: auto;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 16px;
}

.tagline {
  float: none;
  display: inline-block;
}

.right-side-nav {
  text-align: right;
  justify-content: flex-end;
  display: flex;
}

.nav-grida {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 3fr 2fr 3fr;
  grid-auto-columns: 1fr;
  place-content: space-between center;
  place-items: center;
  display: grid;
}

.hide-on-desktop, .hide-on-desktop.w--current {
  display: none;
}

.dropdown-list {
  border: 1px solid #000;
}

.dropdown-list.w--open {
  border-width: 2px;
}

.smaller-on-hero {
  white-space: break-spaces;
  font-size: 34px;
  line-height: 44px;
}

.text-span {
  background-color: #ccffbf;
}

.column-text {
  column-count: 2;
  column-gap: 30px;
}

.invisible-product-deets {
  background-image: url('../images/waggin-tails-corgi-mug-right_red_holiday-800rc.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.shopify-modal-button-wrapper {
  background-image: url('../images/waggin-tails-corgi-mug-right_red_holiday-800rc.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.shopify-modal-button-wrapper:hover {
  background-color: #1e4040;
  background-image: linear-gradient(#1e4040, #1e4040);
}

.buy-button-on-mouseover {
  flex: 1;
}

.thick-black-frame-4-embed {
  background-color: #fff;
  border: 12px solid #000;
  padding: 20px;
}

.white-interior {
  text-align: center;
  background-color: #fff;
  padding: 30px;
}

.black-friday-callout {
  z-index: 800;
  color: #fff;
  text-align: center;
  background-color: #4d6667;
  border-top-width: 3px;
  border-top-color: #000;
  border-bottom-width: 3px;
  border-bottom-color: #000;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 17px;
  display: flex;
  position: static;
  top: 60px;
}

.text-block {
  margin-bottom: 5px;
}

.column {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.swatch {
  background-color: #edc0b3;
  border-radius: 20px;
  width: 15px;
  height: 15px;
  margin-top: 5px;
  margin-right: 10px;
  display: inline-block;
}

.swatch.ice-blue {
  background-color: #c0e3e4;
}

.swatch.mint {
  background-color: #9dccbf;
}

.swatch.silver {
  background-color: #e3e3dd;
}

.swatch.ash {
  background-color: #c8c9c7;
}

.swatch.raspberry {
  background-color: #b44b64;
}

.swatch.columbia-blue {
  background-color: #618acc;
}

.swatch.teal {
  background-color: #30b0ad;
}

.swatch.athletic-heather {
  background-color: #a8abb2;
}

.swatch.sunset {
  background-color: #e4987b;
}

.swatch.storm {
  background-color: #76797a;
  background-image: url('../images/oos-X-light2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.swatch.dark-grey-heather {
  background-color: #3e3c3d;
}

.swatch.asphalt {
  background-color: #73797e;
}

.swatch.navy {
  background-color: #23293d;
}

.swatch.forest-green {
  background-color: #3b403a;
}

.swatch.royal {
  background-color: #0b3878;
}

.swatch.royal.oos {
  background-image: url('../images/oos-X-light2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.swatch.maroon {
  background-color: #5b2b42;
}

.swatch.heliconia {
  background-color: #b6316b;
}

.swatch.carolina-blue {
  -webkit-text-fill-color: inherit;
  background-color: #7ba4db;
  background-clip: border-box;
}

.swatch.indigo {
  background-color: #486d87;
}

.swatch.sand {
  background-color: #cabfad;
}

.swatch.sand.oos {
  background-image: url('../images/oos-thick-x-dark2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.swatch.gold {
  background-color: #eead1a;
}

.swatch.gold.oos {
  background-image: url('../images/oos-thick-x-dark2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.swatch.kelly {
  background-color: #00805e;
}

.swatch.kelly.oos {
  background-image: url('../images/oos-X-light2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px 9px;
}

.swatch.red-accent {
  background-color: #bd211f;
}

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

.swatch.whitelink {
  background-color: #fff;
}

.swatch.light-blue {
  background-color: #aebdda;
}

.swatch.whiteswatch {
  background-color: #fff;
  border: 1px solid #c4c4c4;
}

.swatch.whiteswatch.oatmeal {
  background-color: #bdbdb0;
}

.swatch.army-green {
  background-color: #6d715c;
}

.swatch-price-col {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.preloader-2 {
  z-index: 9999999;
  color: #fff;
  background-color: #0c4427;
  justify-content: center;
  align-items: center;
  font-family: Woodchuck, sans-serif;
  font-size: 43px;
  line-height: 50px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.whitelink {
  color: #fff;
  margin-left: 10px;
}

.holiday-section {
  background-color: #d4edee;
  padding-top: 60px;
}

.xmas-corg-closeup {
  opacity: 0;
  background-image: url('../images/christmas-corgi_web.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: none;
}

.last-day-info {
  font-style: italic;
  font-weight: 700;
}

.top-alert {
  z-index: 999;
  color: #fff;
  text-align: center;
  background-color: #002627;
  width: 100vw;
  margin-top: 0;
  padding: 8px 40px;
  font-size: 12px;
  line-height: 18px;
  position: static;
  top: auto;
}

.grid-7 {
  grid-template-rows: auto;
}

.show-off-photo {
  color: #c8fae8;
  background-image: linear-gradient(#00000054, #00000054), url('../images/ballin-short-sleeve-tshirt_1080-low.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  padding: 40px;
  display: flex;
}

.show-off-photo:hover {
  filter: brightness(105%);
  background-image: url('../images/ballin-short-sleeve-tshirt_1080-low.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.show-off-photo.ballin-ls {
  background-image: linear-gradient(#00000054, #00000054), url('../images/ballin-chewy-longsleeve_edited_800px.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.show-off-photo.ballin-ls:hover {
  background-image: url('../images/ballin-chewy-longsleeve_square_800.jpg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
}

.show-off-more {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff;
  grid-template-rows: 100% auto;
  grid-template-columns: 1fr 1fr;
  max-width: 950px;
  height: 465px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.more-design {
  background-color: #e0e0e0;
  width: 100vw;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

._950-container {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.heading-4 {
  filter: brightness(200%);
  color: #fff;
}

.embed-grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.embed-grid.as-cols {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.bb-wrapper {
  background-color: #fff;
  padding: 15px 15px 10px;
}

.sale-callout {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sale-note {
  text-align: right;
  text-transform: none;
  margin-bottom: 5px;
  font-family: Cabin, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.new-callouts {
  justify-content: center;
  display: flex;
}

.sale1 {
  color: #fff;
  text-align: center;
  background-color: #000000b0;
  flex: 1;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
  font-size: 25px;
  line-height: 34px;
}

.sale-call-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 15px;
  margin-bottom: 25px;
  display: grid;
}

.sale-text {
  font-size: 32px;
  font-weight: 400;
  line-height: 41px;
}

.collection-embed {
  background-color: #fff;
  border: 12px solid #e0e0e0;
  flex: 1;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.collection-embed.padded {
  border-width: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px 5px 20px;
}

.html-embed-4 {
  background-color: #fff;
}

.grid-8 {
  grid-template-columns: 1fr 1fr 1fr;
  place-items: start center;
  padding: 20px;
}

.row-wrapper {
  border-bottom: 1px solid #000;
  flex-direction: row;
  align-items: stretch;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  display: flex;
}

.celll {
  flex: 1;
}

.product-page-section {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

._09_product-pg-container {
  background-color: #fff;
  margin-bottom: 40px;
  margin-left: 10vw;
  margin-right: 10vw;
}

._09_embed {
  background-color: #fff;
  min-height: 70vh;
  margin-bottom: 20px;
}

._09_you-are-here {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
}

._09_see-all {
  color: #000;
}

._09_all-products_mob {
  background-color: #1e4040;
  font-weight: 600;
  display: none;
}

.new-slider {
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  display: flex;
  overflow: hidden;
}

.slider-mask {
  width: 30%;
  height: auto;
  overflow: visible;
}

.slider-mask.test-touch {
  width: 40%;
}

.scroll-slide {
  width: 100%;
  height: auto;
  padding-left: 9.125%;
  padding-right: 9.125%;
}

.grey-icon {
  color: #818181;
}

.grey-icon:hover {
  color: #d1d1d1;
}

.side-collect-sect {
  background-color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 80vh;
  padding-top: 8vw;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.left-side {
  background-color: #fff;
  align-self: stretch;
  width: 30%;
  padding-top: 20px;
  padding-left: 0;
  padding-right: 20px;
  display: inline-block;
}

.right-wrapper {
  width: 70%;
  min-height: 100vh;
  margin-bottom: 8vw;
  padding-left: 20px;
  padding-right: 0;
  display: inline-block;
}

.prod-grid-oct {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.embed-oct {
  background-color: #fff;
}

.sticky-header {
  padding-bottom: 20px;
  position: sticky;
  top: 100px;
}

.ornaments {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  display: flex;
}

.ornament-product {
  background-color: #fff;
  flex: 1;
  padding: 15px;
  box-shadow: 1px 1px 4px #00000054;
}

.hero-2 {
  z-index: 10;
  background-image: linear-gradient(257deg, transparent 36%, var(--white) 74%, #ffffffc9), url('../images/snow-chewy-background-1700px.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: row;
  align-items: center;
  height: 75vh;
  padding: 10vh 100px;
  font-family: Cabin, sans-serif;
  display: flex;
}

.hero-callout-2 {
  color: #fff;
  text-align: left;
  width: 40%;
}

.intro-2 {
  color: #464646;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 45px;
}

.home-product-embed-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.home-embed-section {
  background-color: #f7f7f7;
  padding: 60px;
}

.subhead {
  text-transform: none;
}

.h3-small {
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

@media screen and (min-width: 1440px) {
  .navbar {
    position: sticky;
  }

  .hero-callout {
    font-weight: 700;
  }

  .page-section-links {
    border-bottom-width: 1px;
    border-bottom-color: #000;
  }

  .home-callout.thick-black {
    width: 75vw;
  }

  .new-product-grid.gift-card-grid {
    align-items: start;
  }

  .newest-items-container {
    max-width: 1200px;
  }

  .home-4up-2.thick-black {
    background-color: #f1f1f1;
  }

  .photo-frame-1.hover-attention.mug {
    background-image: url('../images/waggin-tails-corgi-mug-right_red_holiday-800rc.jpg'), url('../images/IMG_20210623_043911_1.jpg');
    background-position: 50%, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .photo-frame-2.tote {
    background-image: url('../images/tote-background.jpg'), url('../images/stacked-cardigan-tshirt-in-dog-run_kelley-green.jpg');
    background-position: 50% 100%, 50%;
    background-repeat: repeat, no-repeat;
    background-size: cover, cover;
  }

  .cta-background {
    display: flex;
  }

  .section_new-prod-deets.not-sticky {
    height: auto;
    min-height: 90vh;
  }

  .white-interior {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .black-friday-callout {
    background-color: #4d6667;
  }

  .whitelink {
    margin-left: 10px;
    margin-right: 10px;
  }

  .embed-grid.as-cols {
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .hero {
    background-position: 50% 100%;
    align-items: flex-end;
    padding: 40px;
  }

  .intro {
    line-height: 38px;
  }

  .thick-black {
    min-width: 300px;
  }

  .thick-black.note {
    width: 90%;
    min-width: auto;
    margin-top: 20px;
  }

  .content-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .content-section.more-youll-like {
    padding-left: 20px;
    padding-right: 20px;
  }

  .email-sign-up {
    width: auto;
    min-width: auto;
    margin-left: 40px;
    margin-right: 40px;
  }

  .logo-horizontal-small {
    height: 70px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid-2.footer-grid {
    grid-auto-columns: 2fr;
    margin-left: 0;
    margin-right: 0;
  }

  .grid-3.on-section {
    grid-template-rows: 33vw;
    grid-template-columns: 33vw 33vw 33vw;
    width: 99vw;
  }

  .home-tiled {
    width: auto;
    height: auto;
    min-height: auto;
  }

  .top-banner-alert {
    font-size: 12px;
    line-height: 16px;
  }

  .synced-product-info {
    padding-left: 10px;
    padding-right: 10px;
  }

  .shopify-embed {
    width: auto;
  }

  .gridded {
    grid-template-columns: 1fr 1fr;
    place-content: start stretch;
    justify-items: stretch;
  }

  .c-accordion-list {
    margin-bottom: 60px;
  }

  .general-info {
    grid-template-columns: 2fr 2fr;
  }

  .hero-callout {
    width: 100%;
  }

  .page-section-links {
    text-align: center;
    align-items: center;
  }

  .category-section {
    padding-top: 40px;
  }

  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-hero.different-back {
    background-image: linear-gradient(#00000091, #0000), url('../images/cardigan-yellow-flowers_2048.jpg');
    background-position: 0 0, 50% 20%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .page-title {
    font-size: 50px;
    line-height: 60px;
  }

  .size-grid {
    grid-row-gap: 20px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .dropdown-link.w--current {
    color: #255954;
  }

  .hidden-buy-button {
    display: none;
  }

  .email-list-sign-up {
    padding: 60px 20px;
  }

  .email-embed {
    width: auto;
  }

  .new-footer {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .join-our-pack-wrapper {
    width: 500px;
  }

  .footer-mc-button {
    display: inline-block;
  }

  .gridded_non-cms {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: stretch;
  }

  .home-callout {
    width: auto;
    max-width: 800px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .story-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .story-container {
    width: auto;
  }

  .link-grid {
    grid-template-columns: auto auto auto auto;
    place-items: stretch stretch;
  }

  .outline-link {
    color: #000;
    border: 3px solid #000;
    min-height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    text-decoration: none;
    display: inline-block;
  }

  .link-grid-2 {
    flex-direction: row;
    justify-content: space-around;
    display: flex;
  }

  .column-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .icon-link {
    text-align: center;
    display: block;
  }

  .hero-text {
    width: 50vw;
  }

  .chonk-feature {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cols {
    column-gap: 27px;
  }

  .deets-container {
    justify-content: center;
    width: 100vw;
  }

  .mainbar-embed {
    min-width: 50vw;
  }

  .sidebar.white-outlinedversion {
    flex: 0 auto;
    width: auto;
    min-width: 30vw;
  }

  .display-wrapper {
    padding: 20px;
  }

  .display-wrapper.sticky {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .collection-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .new-margin-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .new-margin-section.mug-page {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }

  .new-product-grid.gift-card-grid {
    grid-template-rows: 1fr 1fr auto;
    grid-template-columns: 1fr 1fr;
  }

  .new-product-wrapper.hide-on-desktop.hide-ipad-mh {
    display: none;
  }

  .hero_2col {
    flex-direction: row;
    align-items: stretch;
    height: auto;
  }

  .hero-pic {
    background-position: 50%;
    height: auto;
    min-height: 50vh;
  }

  .hero-content {
    order: 1;
    padding: 20px;
  }

  .hero-content.znew-hero-color {
    height: auto;
    padding: 20px;
  }

  .callout-section {
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .photo-content {
    padding: 20px;
  }

  .caption-block {
    width: 80%;
  }

  .minimal-button {
    min-width: 160px;
    overflow: visible;
  }

  .greensection {
    padding: 20px;
  }

  ._1_hero-split {
    grid-template-rows: 1fr;
    grid-template-columns: 3fr 3fr;
    overflow: hidden;
  }

  ._1_hero-split.home-hero {
    grid-template-columns: 2fr 3fr;
    height: 80vh;
  }

  ._1_split-col-a.fall-hero-img {
    background-image: url('../images/chewy-christmas-tree_vertical_600.jpg');
    background-position: 50% 100%;
    background-size: cover;
  }

  ._1_split-col-b {
    padding: 40px;
  }

  ._1_split-col-b.less-padding {
    padding: 20px 10px 20px 20px;
  }

  ._1_split-col-b.not-padding {
    padding: 20px;
  }

  .home-4up-2.thick-black {
    width: 100vw;
    min-width: auto;
    padding: 16px;
  }

  .hero_2col-2 {
    flex-direction: row;
    align-items: stretch;
    height: auto;
  }

  .hero_2col-2.content-home {
    width: 100vw;
  }

  .hero-pic-2 {
    background-image: url('../images/chillin-cardi_short-sleeve_columbia-blue_folded_800x800jpg.jpg'), none;
    background-position: 50%, 50%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    height: auto;
    min-height: 50vh;
  }

  .hero-pic-2.family-pic {
    height: 100%;
  }

  .subscription-cta {
    width: 80vw;
  }

  .close-box {
    background-image: url('../images/close-x-only2x.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 40px;
  }

  .minimal-nav-container {
    justify-content: space-between;
    padding-left: 0;
  }

  .minimal-nav-menu {
    background-color: #fff;
  }

  .min-nav-link {
    text-align: left;
  }

  .nav-grida {
    flex-direction: column;
    grid-template-columns: 3fr;
    align-items: flex-start;
    display: flex;
  }

  .hide-on-tablet-below, .hide-on-tablet-below.w--current {
    display: none;
  }

  .min-nav-button {
    float: left;
    clear: none;
  }

  .min-nav-button.w--open {
    float: left;
  }

  .hide-on-desktop {
    float: right;
    display: block;
  }

  .hide-on-desktop.w--current {
    display: block;
  }

  .smaller-on-hero {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 38px;
  }

  .white-interior {
    padding: 20px;
  }

  .xmas-corg-closeup {
    opacity: 0;
  }

  .top-alert {
    font-size: 11px;
    line-height: 16px;
  }

  .show-off-photo {
    padding: 20px;
  }

  .show-off-more {
    height: 50vw;
  }

  .embed-grid.as-cols {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .sale-callout {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .sale-call-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .grid-8 {
    padding: 0;
  }

  .hero-2 {
    padding: 40px;
  }

  .intro-2 {
    font-size: 30px;
    line-height: 38px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 32px;
  }

  h2 {
    font-size: 30px;
    line-height: 36px;
  }

  h3 {
    margin-bottom: 15px;
  }

  h4 {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .hero {
    height: 100vh;
    padding: 40px 20px;
  }

  .navbar {
    z-index: 998;
    position: fixed;
  }

  .nav-menu {
    z-index: 998;
    text-transform: none;
    background-color: #fff;
    border: 1px solid #000;
    width: 60%;
    height: 90vh;
    position: absolute;
    overflow: scroll;
    box-shadow: 1px 1px 7px 1px #000000b8;
  }

  .nav-link {
    text-transform: uppercase;
    background-color: #fff;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 20px;
  }

  .nav-link.mobile-nav-only {
    display: block;
  }

  .intro {
    font-size: 24px;
    line-height: 32px;
  }

  .thick-black {
    border-width: 10px;
    width: auto;
    padding: 20px 30px;
  }

  .thick-black.note {
    width: auto;
  }

  .thick-black.less-padding {
    background-color: #0000;
    width: 100vw;
    height: 100vh;
    padding: 0;
  }

  .thick-black.smaller-callout {
    width: 100%;
  }

  .blurb {
    column-count: auto;
    font-size: 15px;
    line-height: 20px;
  }

  .content-section {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .content-section.more-youll-like {
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .content-section.more-youll-like.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .content-section.gradient-back {
    padding-top: 0;
  }

  .email-sign-up {
    margin: auto;
  }

  .logo-horizontal-small {
    margin-left: auto;
    margin-right: auto;
    display: none;
    position: static;
  }

  .close-link-block {
    float: none;
    font-size: 16px;
    position: relative;
    inset: auto 0% -10px;
  }

  .html-embed {
    height: 100%;
  }

  .section {
    padding: 60px 10px 60px 20px;
  }

  .grid-2 {
    text-align: left;
    grid-template-rows: auto auto;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 16px;
    line-height: 24px;
  }

  .grid-2.footer-grid {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-columns: 2fr 2fr;
  }

  .footerlink {
    font-size: 18px;
    line-height: 22px;
  }

  .grid-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .grid-3.on-section {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    width: 100vw;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .home-tiled {
    object-fit: cover;
    border-width: 1px;
    border-color: #646464;
    width: 100%;
  }

  .home-tiled.hide-on-mobile {
    display: none;
  }

  .home-tiled.hide-on-desktop {
    display: block;
  }

  .hansief {
    font-size: 20px;
  }

  .top-banner-alert {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shopify-embed {
    padding-left: 10px;
    padding-right: 10px;
  }

  .may-also-item {
    margin-left: auto;
    margin-right: auto;
    padding: 9px 9px 7px;
  }

  .gridded {
    border-style: none;
    grid-template-columns: 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .accordion-item-q-text {
    font-size: 1.3em;
  }

  .accordian-area {
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    top: auto;
  }

  .general-info {
    grid-column-gap: 30px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 2fr 2fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-callout {
    white-space: break-spaces;
    width: 80%;
  }

  .hero-callout.wider {
    width: 90%;
  }

  .page-section-links {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .simple-link {
    border-width: 2px 1px;
    border-color: #616161;
    flex: 1;
    align-self: stretch;
    min-width: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 18px;
  }

  .product-list {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .product-list.half-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .product-list.mobile-only {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .category-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .light-outline {
    padding: 5px 5px 10px;
  }

  .page-hero {
    min-height: 60%;
    padding-top: 100px;
    padding-bottom: 40px;
    font-size: 20px;
    line-height: 28px;
  }

  .page-hero.contact-background {
    background-position: 0 0, 50%;
  }

  .page-hero.about-pg {
    padding-top: 40px;
  }

  .page-title {
    font-size: 36px;
    line-height: 46px;
  }

  .basic-button {
    margin-left: auto;
    margin-right: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    display: block;
  }

  .size-grid {
    place-items: stretch stretch;
    font-size: 12px;
    line-height: 18px;
  }

  .size-container {
    padding: 20px;
  }

  .smaller-on-mobile {
    font-size: 22px;
    line-height: 28px;
  }

  .dropdown-toggle {
    text-transform: uppercase;
  }

  .menu-button {
    float: left;
    background-image: url('../images/close-lines2x.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 30px;
    border: .5px #000;
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 30px;
  }

  .menu-button.w--open {
    background-color: #3a8c7d;
    background-image: url('../images/close-x-only2x.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 25px;
  }

  .brand {
    float: right;
    margin-top: 4px;
    margin-right: 10px;
  }

  .brand.fixing-on-faq {
    z-index: 999;
    background-image: url('../images/cardi-hardy-logo_centered-1line_pink-tonge.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 50px;
    margin-top: 0;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .email-list-sign-up {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .new-footer {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .join-our-pack-wrapper {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-mailchimp-field.popup {
    font-size: 12px;
    line-height: 18px;
  }

  .new-footer-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .spacer {
    height: 20px;
  }

  .gridded_non-cms {
    grid-template-columns: 1fr 1fr;
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-textheader {
    font-size: 18px;
    line-height: 22px;
  }

  .background-img-home {
    background-image: url('../images/chewy-bridge_mobileH.jpg'), linear-gradient(to right, #000000b3 25%, #0000 61% 78%);
    background-position: 50%, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto 110vh, auto;
    height: 100vh;
    display: none;
  }

  .home-callout {
    text-align: left;
    max-width: none;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .subheading {
    letter-spacing: 1px;
    width: 290px;
    font-size: 15px;
    line-height: 20px;
  }

  .img-with-tagline {
    text-align: center;
    width: 300px;
    padding-left: 10px;
  }

  .padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hide-on-mobile-nav {
    display: none;
  }

  .preloader {
    font-size: 36px;
    line-height: 40px;
  }

  .story-section {
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    display: flex;
  }

  .column-container {
    text-align: center;
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }

  .hero-text {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

  .commentary {
    font-size: 20px;
    line-height: 26px;
  }

  .intro-card {
    flex: 1;
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .color-chonk {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .chonk-feature {
    width: auto;
    padding: 25px 20px;
  }

  .feature-image {
    background-image: url('../images/jennie-NWTQH-shirt_crop_800px-web.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    order: -1;
    width: 100%;
    height: 401px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .mixed-case-link-block {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 18px;
  }

  .big-callout {
    border-top-width: 3px;
    border-bottom: 3px solid #000;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 36px;
    line-height: 44px;
  }

  .medium-script {
    font-size: 20px;
    line-height: 26px;
  }

  .product-section {
    padding: 15px;
  }

  .smaller-paragraph {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 18px;
  }

  .v2_category-wrapper.product-list {
    align-content: start;
    align-items: start;
  }

  .deets-container {
    flex-direction: column;
  }

  .sidebar {
    column-count: 2;
    width: auto;
    padding: 20px;
  }

  .sidebar.white-outlinedversion {
    column-count: 1;
  }

  .small-text {
    font-size: 11px;
    line-height: 16px;
  }

  .sticky-product-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: none;
  }

  .display-wrapper {
    border-left-style: none;
    width: auto;
  }

  .display-wrapper.sticky {
    flex: 0 50vh;
    align-self: stretch;
    width: auto;
    padding: 10px 0;
    position: static;
  }

  .small-info-column {
    border-right-style: none;
    width: auto;
    padding-right: 0;
  }

  .collection-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .collection-wrapper {
    min-height: 50vh;
  }

  .details-text {
    font-size: 14px;
  }

  .selling-points {
    padding-left: 17px;
    font-size: 14px;
  }

  .cardi-logo {
    background-image: url('../images/cardi-hardy-logo-shirt_horizontal.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .lined-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .embed-detail-container {
    margin-bottom: 20px;
    padding: 10px;
  }

  .new-container {
    margin-top: 0;
    margin-bottom: 0;
  }

  .new-container.thick-black-frame-4-embed {
    margin-bottom: 0;
  }

  .new-margin-section {
    padding: 35px 20px 20px;
  }

  .new-margin-section.mug-page {
    padding: 0;
  }

  .new-margin-section.gift-card-header {
    padding-top: 100px;
  }

  .new-product-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .new-product-grid._4x {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .new-product-grid.gift-card-grid {
    margin-top: 20px;
  }

  .new-product-wrapper {
    text-align: left;
    font-size: 12px;
    line-height: 15px;
  }

  .product-name {
    font-size: 14px;
    line-height: 16px;
  }

  .more4you {
    border: 1px solid #000;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .more4u-wrapper {
    padding: 8px;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content.znew-hero-color {
    padding: 20px;
  }

  .callout-section {
    margin-top: 55px;
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .left-column {
    align-self: center;
    width: auto;
    padding-bottom: 20px;
  }

  .caption-container {
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .smaller-mock {
    width: 90%;
  }

  .zoom-on-mouseover:hover {
    transform: none;
  }

  .product-pg-heading {
    font-size: 24px;
    line-height: 30px;
  }

  .product-pg-heading.hide-anything-on-mobile {
    display: none;
  }

  .comparison-wrapper {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .photo-content {
    margin-bottom: 20px;
  }

  .photo-content.right-contnet {
    background-position: 0 0, 50% 0;
    background-repeat: repeat, no-repeat;
  }

  .caption-block {
    width: 50%;
  }

  .minimal-button {
    min-width: 120px;
  }

  .nav-container {
    padding-left: 0;
    padding-right: 0;
  }

  .newest-items-container {
    margin-bottom: 20px;
  }

  .grid-5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-content: start;
    align-items: stretch;
  }

  ._1_hero-split {
    grid-template-columns: 2fr 2fr;
    height: 80vh;
  }

  ._1_hero-split.home-hero {
    grid-template-columns: 2fr 2fr;
  }

  ._1_split-col-b {
    padding: 20px;
  }

  ._1_split-col-b.less-padding {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .home-4up-2.thick-black {
    border-top-width: 10px;
    border-bottom-width: 10px;
    width: auto;
  }

  .framed-photos {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero_2col-2.content-home {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .light-green {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .subscription-cta {
    border-width: 7px;
    align-self: center;
    width: auto;
    height: auto;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .cta-background {
    padding: 20px;
  }

  .close-box {
    background-size: cover;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-bottom: auto;
    margin-right: -15px;
    display: block;
  }

  .cta-big-type {
    margin-left: auto;
    margin-right: auto;
    font-size: 50px;
    line-height: 58px;
  }

  .section_new-prod-deets {
    border-width: 12px;
    margin-top: 50px;
  }

  .section_new-prod-deets.inbarrier {
    height: 100%;
    margin-top: 0;
  }

  .product-navigation {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .you-are-here-text {
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 12px;
    line-height: 14px;
  }

  .smaller-on-hero {
    font-size: 24px;
    line-height: 32px;
  }

  .thick-black-frame-4-embed {
    border-bottom-style: none;
  }

  .thick-black-frame-4-embed._12px-bottom {
    border-bottom-style: solid;
  }

  .white-interior {
    padding: 0;
  }

  .black-friday-callout {
    position: absolute;
    top: 50px;
  }

  .text-block {
    font-size: 11px;
    line-height: 15px;
  }

  .swatch {
    width: 13px;
    height: 13px;
    margin-top: 8px;
    margin-right: 6px;
  }

  .swatch.mint {
    background-color: #c2ebd1;
  }

  .swatch-price-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .xmas-corg-closeup {
    width: auto;
    height: auto;
  }

  .top-alert {
    z-index: 700;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 10px;
    line-height: 14px;
    position: relative;
    top: 50px;
  }

  .show-off-more {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: 80vh 80vh;
    grid-template-columns: 1fr;
    max-width: none;
    height: auto;
    padding: 12px;
  }

  .navbarrier {
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    padding-bottom: 0;
    padding-right: 0;
    position: relative;
    inset: 0%;
  }

  .sale-note {
    font-size: 14px;
    line-height: 18px;
  }

  .sale-text {
    font-size: 20px;
    line-height: 28px;
  }

  .collection-embed.padded {
    padding-bottom: 10px;
  }

  .grid-8 {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
  }

  ._09_product-pg-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  ._09_you-are-here {
    display: block;
  }

  ._09_all-products_mob {
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 17px;
    line-height: 24px;
    display: block;
  }

  .slider-mask {
    width: 40%;
  }

  .slider-mask.test-touch {
    width: 50%;
  }

  .grey-icon {
    color: #0000;
  }

  .side-collect-sect {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-side {
    width: auto;
    padding-right: 0;
  }

  .right-wrapper {
    width: auto;
    padding-left: 0;
  }

  .prod-grid-oct {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    place-items: stretch stretch;
  }

  .sticky-header {
    position: static;
  }

  .hero-2 {
    height: 90vh;
    padding: 30px 20px 40px;
  }

  .hero-callout-2 {
    white-space: break-spaces;
  }

  .intro-2 {
    font-size: 24px;
    line-height: 33px;
  }

  .home-product-embed-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .home-embed-section {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 80vh;
    min-height: auto;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar {
    border-bottom-width: 1px;
  }

  .nav-menu {
    width: 80%;
    height: auto;
    overflow: auto;
  }

  .nav-link {
    text-transform: uppercase;
    line-height: 21px;
  }

  .thick-black {
    min-width: auto;
    max-width: none;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .thick-black.less-padding {
    height: 200vh;
  }

  .content-section.gradient-back {
    text-align: left;
  }

  .logo-horizontal-small {
    clear: none;
    width: 120px;
    height: 45px;
    display: none;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .close-link-block {
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    top: auto;
    bottom: -40px;
  }

  .highlighted-text {
    display: inline;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-2 {
    grid-template-rows: auto auto auto;
  }

  .grid-2.footer-grid {
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

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

  .footerlink.social-media-icon {
    background-position: 50%;
  }

  .footerlink.social-footer {
    text-align: center;
    justify-content: center;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-3.on-section {
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .gridded {
    border-style: none;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .accordion-item-q-text {
    font-size: 1.1em;
    line-height: 1.3em;
  }

  ._w-accordion-item-a.child-align {
    flex-direction: column;
    align-items: flex-start;
  }

  .general-info {
    grid-row-gap: 30px;
    grid-template-columns: 2fr;
  }

  .hero-callout {
    width: 100%;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-callout.wider {
    align-self: center;
    width: 100%;
  }

  .page-section-links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .simple-link {
    border-width: 1px 3px 2px;
    min-width: 100%;
  }

  .product-list {
    grid-template-columns: 1fr 1fr;
  }

  .product-list.half-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .product-list._2-up {
    grid-template-columns: 50% 50%;
    display: grid;
  }

  .category-section {
    padding: 10px;
  }

  .basic-button {
    display: block;
  }

  .size-grid {
    justify-items: start;
  }

  .dropdown-toggle {
    text-transform: uppercase;
  }

  .brand {
    position: relative;
  }

  .new-footer {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .join-our-pack-wrapper {
    width: auto;
  }

  .footer-mailchimp-field.popup {
    min-width: 90%;
  }

  .gridded_non-cms {
    grid-template-columns: 1fr;
  }

  .subheading {
    width: auto;
    margin-bottom: 20px;
    padding-top: 5px;
    font-size: 12px;
    line-height: 18px;
  }

  .img-with-tagline {
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .section-row {
    flex-direction: column;
  }

  .intro-card {
    margin-left: 0;
    margin-right: 0;
  }

  .chonk-feature {
    padding: 30px 20px;
  }

  .feature-image {
    background-size: cover;
  }

  .resources-wrapper {
    flex-direction: column;
    display: flex;
  }

  .peakaboo-section.new-photo {
    background-position: 40%;
  }

  .cols {
    column-count: 1;
  }

  .big-callout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar {
    column-count: 1;
  }

  .sticky-product-container {
    flex-direction: column;
  }

  .display-wrapper.sticky {
    flex-basis: 30vh;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .small-info-column {
    width: auto;
  }

  .collection-container {
    padding: 0;
  }

  .cardi-logo {
    flex: 1;
  }

  .new-product-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .new-product-wrapper.hide-on-desktop.hide-ipad-mh {
    display: block;
  }

  .product-name {
    margin-bottom: 5px;
  }

  .hero_2col {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-pic {
    background-position: 50% 0;
    border-right-style: none;
    width: 100vw;
    min-height: 40vh;
  }

  .hero-content {
    width: 100vw;
  }

  .caption-container {
    flex: 1;
  }

  .photo-content.right-contnet {
    flex: 0 auto;
  }

  .caption-block {
    width: 80%;
  }

  .home-4up {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .greensection {
    padding: 20px;
  }

  .grid-5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  ._1_hero-split {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr;
    height: 85vh;
  }

  ._1_hero-split.home-hero {
    grid-template-rows: 60vh auto;
    grid-template-columns: 2fr;
    height: auto;
  }

  ._1_split-col-a.fall-hero-img {
    background-position: 50%;
  }

  ._1_split-col-b {
    align-items: flex-start;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  ._1_split-col-b.less-padding {
    padding-left: 0;
  }

  ._1_split-col-b.not-padding {
    padding: 20px 0 0;
  }

  .home-4up-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .framed-photos {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .hero_2col-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-pic-2 {
    border-right-style: none;
    width: 100vw;
    min-height: 40vh;
  }

  .subscription-cta {
    min-height: 90vh;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .close-box {
    flex: 0 auto;
    margin-top: 0;
    margin-right: 0;
  }

  .cta-subscribe-content {
    margin-top: 20px;
  }

  .black-friday-callout {
    position: absolute;
  }

  .swatch-price-col {
    flex-direction: column;
    justify-content: center;
  }

  .show-off-photo.ballin-ls:hover {
    background-image: url('../images/ballin-chewy-longsleeve_edited_800px.jpg');
    background-position: 50%;
  }

  .embed-grid.as-cols {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .sale-call-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
    display: flex;
  }

  .collection-embed.padded {
    align-self: center;
    margin-bottom: 10px;
  }

  .grid-8 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .slider-mask {
    width: 45%;
  }

  .hero-2 {
    background-image: linear-gradient(174deg, #0000 47%, #ffffffa6 74%, #ffffffc9), url('../images/snow-chewy-background-vertical.jpg');
    flex-direction: column;
    justify-content: flex-end;
    height: 90vh;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-callout-2 {
    text-align: center;
    width: auto;
  }

  .intro-2 {
    text-align: center;
    margin-bottom: 0;
  }
}

#w-node-_04bdaea6-3514-4cdc-d73d-5dfd48ac1ea7-e1b72c45, #w-node-_6403d09c-dd85-2519-e07a-f1602efff9a5-e1b72c45, #w-node-_04bdaea6-3514-4cdc-d73d-5dfd48ac1ea8-e1b72c45, #w-node-_6403d09c-dd85-2519-e07a-f1602efff9a4-e1b72c45 {
  align-self: stretch;
}

#w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c90-18b15539 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_55d766c5-2422-804d-961a-e275927c7195-e1b72c99 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_797dfbf1-9c80-a2d9-3cc8-cf85db8b319c-e1b72c99 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_7a2eda6f-057b-d91b-3780-e9f038719c89-e1b72cb2, #w-node-_2a46b13b-75d5-3cc4-1830-d3e5fc494cea-e1b72cb2, #w-node-_5b04e5f0-fb1e-00cb-0616-1432a14668f5-e1b72cb2, #w-node-f9dd1984-6d97-f492-3e90-1fd71b2aaff9-e1b72cb2, #w-node-f9de899c-d91b-5e6a-3442-2cc92eebd686-e1b72cb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f9de899c-d91b-5e6a-3442-2cc92eebd688-e1b72cb2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ac1172e3-64c9-f7f3-9008-c6f2a0be791f-e1b72cb2, #w-node-_10832566-b7bf-8ac1-2d0b-bad081279291-e1b72cb2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6ad1f68-adcb-9c55-1ca4-56f30ffef553-e1b72cb2 {
  justify-self: center;
}

#w-node-_0999eaad-197e-5884-9fb8-25ef73101ce0-e1b72cb2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a71c335f-18b1-2116-f504-c9c83af3b81c-e1b72cb4 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
}

#w-node-a71c335f-18b1-2116-f504-c9c83af3b825-e1b72cb4 {
  justify-self: end;
}

#w-node-_42d76187-f3e6-ccbe-1921-a9e2244b2760-e1b72cb4 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-dfe33cbf-3cad-75d2-f1a7-75670405d5ff-e1b72cb4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_5a5690de-288c-4e96-2942-eefce7710ac6-e1b72cb4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_8b601a82-2f5f-acbc-ed91-05d0482b3173-e1b72cb4 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-e36bd37f-9145-b3c9-6bad-6c181b5ce171-e1b72cb4, #w-node-_8a521662-fb47-7244-9f9d-fc30324305cd-e1b72cb4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_66859316-6f2d-610f-478f-2b3199ae189b-e1b72cb4 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_66859316-6f2d-610f-478f-2b3199ae189d-e1b72cb4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_66859316-6f2d-610f-478f-2b3199ae189f-e1b72cb4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_66859316-6f2d-610f-478f-2b3199ae18a1-e1b72cb4 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_66859316-6f2d-610f-478f-2b3199ae18a3-e1b72cb4, #w-node-_66859316-6f2d-610f-478f-2b3199ae18a5-e1b72cb4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c7a17e86-b324-49e0-212b-c63a1b9b12d4-e1b72cb4, #w-node-_1cf0b6ae-8fa1-823e-25c5-db6985ab307d-e1b72cb4 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1cf0b6ae-8fa1-823e-25c5-db6985ab307f-e1b72cb4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_1cf0b6ae-8fa1-823e-25c5-db6985ab3081-e1b72cb4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_5e965e8c-464a-6c3a-9d72-aa99ce80455b-e1b72cb4 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5e965e8c-464a-6c3a-9d72-aa99ce80455d-e1b72cb4 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_5e965e8c-464a-6c3a-9d72-aa99ce80455f-e1b72cb4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-e74d24f6-87c4-215b-5779-a72ef8769928-e1b72cb4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_400112d9-8435-98a8-9eae-babd67959aca-e1b72cb4, #w-node-_400112d9-8435-98a8-9eae-babd67959acb-e1b72cb4 {
  align-self: stretch;
}

#w-node-_7dcb6211-1c1d-c943-ee01-93745332347e-e1b72cca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76a1e5a6-728d-ff9e-8397-d81db9a12573-e1b72cca {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_2ac87bbe-ce9b-0976-b1ca-f6023b61b0b3-e1b72cf2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_07502c26-cb1f-8370-ad1f-799519e17025-e1b72cf2 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9ceb9d47-3d40-0f01-828b-cc625fd7fb67-e1b72d0c, #w-node-_4cf61539-87e6-235c-3290-c782ff08bd06-e1b72d0c, #w-node-_1bbb1fdc-4c3c-69ce-8ab9-52553148bad9-e1b72d0c, #w-node-_5c94e347-7ae1-0f3a-c434-c2de834c3331-e1b72d0c, #w-node-b51605e4-94bb-6594-b5b3-8182e3b518b4-e1b72d0d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6730257-b261-ae39-4354-86338b67452e-e1b72d0e {
  justify-self: center;
}

#w-node-_9ceb9d47-3d40-0f01-828b-cc625fd7fb67-e1b72d11, #w-node-_4cf61539-87e6-235c-3290-c782ff08bd06-e1b72d11, #w-node-_1bbb1fdc-4c3c-69ce-8ab9-52553148bad9-e1b72d11, #w-node-_5c94e347-7ae1-0f3a-c434-c2de834c3331-e1b72d11 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b637b2a1-74ae-492c-aefe-a1dec08f6612-e1b72d15, #w-node-deaef63f-312b-55c3-0936-f733c36b71d5-e1b72d15 {
  align-self: stretch;
}

#w-node-_0227770a-9ab1-92eb-c0f2-3326fa49ed25-e1b72d2e, #w-node-a589f029-1f48-a4f2-de98-7cd5596c70db-e1b72d2e, #w-node-_0227770a-9ab1-92eb-c0f2-3326fa49ed25-e1b72d2f, #w-node-_16e18cba-4d68-3250-4f7a-910920c5947c-e1b72d2f, #light-hoodie.w-node-_2a67d386-c82a-97b3-bcf1-eecced685746-e1b72d52, #light-crewneck.w-node-_8011822e-2786-157f-7b0d-02f40c5da102-e1b72d52, #navy-crewneck.w-node-_74da88c1-5444-1d4b-671f-4eb74fa4c37b-e1b72d52, #zipup.w-node-aaa15c7e-a393-a196-aea8-4299fa1b504b-e1b72d52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#silver.w-node-_2a67d386-c82a-97b3-bcf1-eecced685746-e1b72d54 {
  grid-area: 1 / 2 / 2 / 3;
}

#navy.w-node-_8011822e-2786-157f-7b0d-02f40c5da102-e1b72d54 {
  grid-area: 1 / 1 / 2 / 2;
}

#back-navy.w-node-aaa15c7e-a393-a196-aea8-4299fa1b504b-e1b72d54 {
  grid-area: 1 / 3 / 2 / 4;
}

#back-ice-blue.w-node-_74da88c1-5444-1d4b-671f-4eb74fa4c37b-e1b72d54 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_86a704aa-3810-54a6-1c72-0b5a0950ab12-e1b72d54 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-f9777d82-c17a-ed6a-2351-e5e05580205c-e1b72d54 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-a761affd-a08e-c95d-d0bd-a4438d14a65a-e1b72d5b, #w-node-_5d6bebfd-470f-7ac3-9ebe-0d85f38e43ef-e1b72d5e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_797dfbf1-9c80-a2d9-3cc8-cf85db8b319c-e1b72d5e {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (min-width: 1440px) {
  #w-node-_6403d09c-dd85-2519-e07a-f1602efff9a5-e1b72c45, #w-node-_04bdaea6-3514-4cdc-d73d-5dfd48ac1ea8-e1b72c45 {
    align-self: stretch;
  }

  #w-node-_6403d09c-dd85-2519-e07a-f1602efff9a4-e1b72c45 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: stretch;
  }

  #w-node-_55d766c5-2422-804d-961a-e275927c7195-e1b72c99, #w-node-_7a2eda6f-057b-d91b-3780-e9f038719c89-e1b72cb2, #w-node-_2a46b13b-75d5-3cc4-1830-d3e5fc494cea-e1b72cb2, #w-node-f9de899c-d91b-5e6a-3442-2cc92eebd686-e1b72cb2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b6ad1f68-adcb-9c55-1ca4-56f30ffef553-e1b72cb2 {
    justify-self: center;
  }

  #w-node-deaef63f-312b-55c3-0936-f733c36b71d5-e1b72d15 {
    align-self: stretch;
  }

  #w-node-_0227770a-9ab1-92eb-c0f2-3326fa49ed25-e1b72d2e, #w-node-_0227770a-9ab1-92eb-c0f2-3326fa49ed25-e1b72d2f, #w-node-_5d6bebfd-470f-7ac3-9ebe-0d85f38e43ef-e1b72d5e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c90-18b15539 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c98-18b15539 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59ca4-18b15539 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_7a2eda6f-057b-d91b-3780-e9f038719c89-e1b72cb2, #w-node-_2a46b13b-75d5-3cc4-1830-d3e5fc494cea-e1b72cb2, #w-node-_5b04e5f0-fb1e-00cb-0616-1432a14668f5-e1b72cb2, #w-node-f9dd1984-6d97-f492-3e90-1fd71b2aaff9-e1b72cb2, #w-node-ac1172e3-64c9-f7f3-9008-c6f2a0be791f-e1b72cb2, #w-node-_10832566-b7bf-8ac1-2d0b-bad081279291-e1b72cb2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2ac87bbe-ce9b-0976-b1ca-f6023b61b0b3-e1b72cf2 {
    align-self: stretch;
  }

  #w-node-_0283cc5a-490e-9ee5-2eac-253181255701-e1b72cf2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e9ef1149-1945-cede-2e71-e10dc1a46cb4-e1b72cf2 {
    grid-area: 2 / 2 / 3 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c90-18b15539 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c98-18b15539, #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59ca4-18b15539 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_55d766c5-2422-804d-961a-e275927c7195-e1b72c99 {
    align-self: center;
  }

  #w-node-f9dd1984-6d97-f492-3e90-1fd71b2aaff9-e1b72cb2, #w-node-_42d76187-f3e6-ccbe-1921-a9e2244b2760-e1b72cb4, #w-node-dfe33cbf-3cad-75d2-f1a7-75670405d5ff-e1b72cb4, #w-node-_5a5690de-288c-4e96-2942-eefce7710ac6-e1b72cb4, #w-node-_8b601a82-2f5f-acbc-ed91-05d0482b3173-e1b72cb4, #w-node-_66859316-6f2d-610f-478f-2b3199ae189b-e1b72cb4, #w-node-_66859316-6f2d-610f-478f-2b3199ae189d-e1b72cb4, #w-node-_66859316-6f2d-610f-478f-2b3199ae189f-e1b72cb4, #w-node-_66859316-6f2d-610f-478f-2b3199ae18a1-e1b72cb4, #w-node-c7a17e86-b324-49e0-212b-c63a1b9b12d4-e1b72cb4, #w-node-_1cf0b6ae-8fa1-823e-25c5-db6985ab307d-e1b72cb4, #w-node-_1cf0b6ae-8fa1-823e-25c5-db6985ab307f-e1b72cb4, #w-node-_1cf0b6ae-8fa1-823e-25c5-db6985ab3081-e1b72cb4, #w-node-_5e965e8c-464a-6c3a-9d72-aa99ce80455b-e1b72cb4, #w-node-_5e965e8c-464a-6c3a-9d72-aa99ce80455d-e1b72cb4, #w-node-_5e965e8c-464a-6c3a-9d72-aa99ce80455f-e1b72cb4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_07502c26-cb1f-8370-ad1f-799519e17025-e1b72cf2 {
    grid-column-end: 3;
  }

  #w-node-_0283cc5a-490e-9ee5-2eac-253181255701-e1b72cf2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_50218f1b-0ae7-5299-044d-ec9dd05f0c98-e1b72d0d, #silver.w-node-_2a67d386-c82a-97b3-bcf1-eecced685746-e1b72d54, #navy.w-node-_8011822e-2786-157f-7b0d-02f40c5da102-e1b72d54, #back-navy.w-node-aaa15c7e-a393-a196-aea8-4299fa1b504b-e1b72d54, #back-ice-blue.w-node-_74da88c1-5444-1d4b-671f-4eb74fa4c37b-e1b72d54, #w-node-_86a704aa-3810-54a6-1c72-0b5a0950ab12-e1b72d54, #w-node-f9777d82-c17a-ed6a-2351-e5e05580205c-e1b72d54 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c90-18b15539, #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59c98-18b15539, #w-node-e9f42bff-0a20-5a6f-d0e0-daea97e59ca4-18b15539 {
    grid-column: span 1 / span 1;
  }

  #w-node-_55d766c5-2422-804d-961a-e275927c7194-e1b72c99 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_07502c26-cb1f-8370-ad1f-799519e17025-e1b72cf2 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_0283cc5a-490e-9ee5-2eac-253181255701-e1b72cf2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e9ef1149-1945-cede-2e71-e10dc1a46cb4-e1b72cf2 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_50218f1b-0ae7-5299-044d-ec9dd05f0c98-e1b72d0d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e255631b-1d03-1cad-ddbd-c68e9ec08774-e1b72d0d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_41335184-8522-3627-a5c6-16c3fa82b3dc-e1b72d0d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_35a72dd5-7000-98b2-a290-8813a5f25854-e1b72d2e, #w-node-_35a72dd5-7000-98b2-a290-8813a5f25854-e1b72d2f, #w-node-_5d6bebfd-470f-7ac3-9ebe-0d85f38e43ee-e1b72d5e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Woodchuck';
  src: url('../fonts/Woodchuck-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Streetwear';
  src: url('../fonts/Streetwear.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hansief';
  src: url('../fonts/Hansief.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}