footer {
  padding: 3.75rem 1.25rem 1.875rem;
}

footer .footer {
  max-width: 1264px;
  margin: auto;
}

.footer .section {
  display: grid;
  gap: 1.5rem 0; 
  grid-template: 
    "nav" auto
    "brand" auto
    "connect" auto
    "links" auto;
}

.footer .section > div:nth-child(1) {
  grid-area: brand;
  width: 100%;
  text-align: center;
}

.footer .section > div:nth-child(2) {
  grid-area: connect;
  width: 100%;
  height: 100%;
}

.footer .section > div:nth-child(3) {
  grid-area: nav;
  width: 100%;
}

.footer .section > div:nth-child(4) {
  grid-area: links;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.625rem;
  color: var(--dark-grey);
}

footer a,
footer a:hover {
  text-decoration: none !important;
}

footer .default-content-wrapper img {
  max-width: 220px;
  height: auto;
}

footer .default-content-wrapper:first-child p {
  margin: 0;
}

footer .columns > div {
  align-items: flex-start;
}

footer .columns > div > div:not(.language-dropdown) {
  width: 100%;
}

.footer h6 {
  margin: 0 0 1.5rem;
}

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

footer .columns {
  position: relative;
}

footer .columns.columns-5-cols {
  padding: 0 2.1875rem 1.6875rem 1.875rem;
  margin-bottom: 1.5rem;
}

footer .columns.columns-5-cols::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100vw;
  left: -1.25rem;
  height: 1px;
  background-color: var(--light-grey);
}

footer .columns p.button-container {
  margin: 0;
  padding: .5rem 0;
}

footer .columns ul li li {
  padding-bottom: .375rem;
  line-height: 1.5625rem;
}

footer .columns ul li a,
footer .columns .button-container .button {
  display: flex;
  justify-content: space-between;
}

footer .columns ul ul {
  max-height: 0;
  overflow: hidden;
  transition: .35s ease;
  display: none;
}

footer .columns ul li.active ul {
  max-height: 50rem;
  display: block;
}

.footer .section > div:nth-child(2) .columns > div {
  align-items: center;
}

.footer .section > div:nth-child(2) .columns > div > div:not(.language-dropdown) {
  width: auto;
}

.footer .section > div:nth-child(2) ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer .section > div:nth-child(2) ul li {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.footer .section > div:nth-child(2) .language-dropdown ul {
  gap: 0;
}

.footer .section > div:nth-child(2) .language-dropdown ul li {
  width: 100%;
}

.footer .section > div:nth-child(2) ul li a {
  display: block;
}

.footer .section > div:nth-child(2) .icon {
  height: 28px;
  width: 28px;
}

.footer .section > div:nth-child(2) a img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(74%) saturate(4914%) hue-rotate(334deg) brightness(84%) contrast(95%);
  transition: 200ms;
}

.footer .section > div:nth-child(2) a:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(37%) saturate(7234%) hue-rotate(331deg) brightness(84%) contrast(101%);
}

.footer .section > div:nth-child(2) .button-container {
  padding: 2rem 0 0;
}

.footer .section > div:nth-child(2) .button {
  height: 48px;
  width: 164px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.0009rem;
  border-radius: 1.25rem;
  background-color: #f4f4f4;
  position: relative;
  justify-content: space-between;
}

.footer .section > div:nth-child(2) .button:hover,
.footer .section > div:nth-child(2) .button:focus {
  color: var(--black);
  box-shadow: 0 4px 10px 0 rgba(0 0 0 / 15%);
}

.footer .section > div:nth-child(2) .button .icon {
  position: absolute;
  height: .9375rem;
  width: .9375rem;
  right: .9375rem;
  transition: .15s;
  transform: rotate(0);
}

.footer .section > div:nth-child(2) .active .icon {
  transform: rotate(180deg);
}

.footer .section > div:nth-child(2) .button img {
  filter: none;
  display: block;
}

.footer .section > div:nth-child(2) .button:hover img,
.footer .section > div:nth-child(2) .button:focus img {
  filter: none;
}

footer .section > div:nth-child(3) .icon-forward {
  display: none;
}

.footer .section > div:nth-child(4) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer .section > div:nth-child(4) ul:nth-child(2) {
  flex-direction: column;
}

.footer .section > div:nth-child(4) ul:nth-child(2) li::before {
  display: none;
}

.footer .section > div:nth-child(4) ul li {
  position: relative;
  padding: 0 .75rem;
}

.footer .section > div:nth-child(4) ul li::before {
  content: "|";
  position: absolute;
  left: 0;
  font-weight: 300;
}

.footer .section > div:nth-child(4) ul li:first-child::before {
  display: none;
}

.footer .section > div:nth-child(4) a {
  color: var(--dark-grey);
  cursor: pointer;
}

.footer .section > div:nth-child(4) a:hover {
  color: var(--primary-hover);
}

@media (width >= 1024px) {
  footer {
    padding: 5.5rem 1.25rem 1.875rem;
  }

  .footer .section {
    gap: 2rem 0; 
    grid-template: 
      "brand brand" auto
      "connect nav" auto
      "links links" auto
      / 25% 75%; 
  }

  .footer .section > div:nth-child(1) {
    text-align: left;
  }

  .footer .section > div:nth-child(2) .columns > div {
    align-items: flex-start;
  }

  .footer .section > div:nth-child(3) .icon-forward {
    display: flex;
  }

  .footer .section > div:nth-child(3) .icon-chevron {
    display: none;
  }

  .footer .section > div:nth-child(4) ul:nth-child(2) {
    flex-direction: row;
  }
  
  .footer .section > div:nth-child(4) ul:nth-child(2) li::before {
    display: block;
  }

  footer .columns.columns-5-cols {
    padding: 0;
    margin-bottom: 0;
  }
  
  footer .columns.columns-5-cols::after {
    display: none;;
  }

  .footer .columns p.button-container + p.button-container {
    padding-top: 1rem;
  }

  footer .columns p.button-container {
    padding: 0 0 .5rem;
  }

  footer .columns ul li a,
  footer .columns .button-container a.button {
    justify-content: flex-start;
    text-align: left;
  }

  footer .columns ul ul {
    max-height: 50rem;
    display: block;
  }
}

/* stand alone - Kashi */
.theme-kashi.stand-alone footer {
  background-color: #F7F7F7;
  padding: 1.875rem 0;
}

.theme-kashi.stand-alone footer .footer {
  padding-left: .938rem;
  padding-right: .938rem;
  max-width: 1300px;
}

.theme-kashi.stand-alone footer .footer .section {
  display: grid;
  gap: 1.5rem 0; 
  grid-template: 
    "nav-social" auto
    "brand-copyright" auto;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(1) {
  grid-area: brand-copyright;
  width: 100%;
  text-align: center;
  padding-left: .938rem;
  padding-right: .938rem;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(1) > div > div p:last-child {
  color: #BCBCBC;
  font-size: .625rem;
  margin: 1.25rem 0 0;
  line-height: 1.5;
  font-weight: 400;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(1) > div > div p img {
  max-width: 121px;
  height: auto;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) {
  grid-area: nav-social;
  width: 100%;
  height: 100%;
  padding-left: .938rem;
  padding-right: .938rem;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div {
  display: flex;
  flex-direction: column;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div ul {
  gap: 0;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(1) ul,
.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(2) ul {
  display: flex;
  flex-direction: column;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(1) ul li a,
.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(2) ul li a {
  width: 100%;
  padding: .313rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-hover);
  text-align: center;
  line-height: 1.875rem;
  text-transform: uppercase;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) {
  order: -1;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul li a {
  padding: .313rem .938rem;
  line-height: 1.5;
}

.theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul li a img {
  width: 1.875rem;
  height: 1.875rem;
  filter: brightness(0) saturate(100%) invert(41%) sepia(70%) saturate(505%) hue-rotate(69deg) brightness(91%) contrast(83%);
}

@media (width >= 768px) {
  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div {
    flex-direction: row;
    align-items: flex-start;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(1),
  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(2),
  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) {
    flex-basis: 100%;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(1) ul li a,
  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(2) ul li a {
    font-size: .875rem;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) {
    order: unset;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul {
    justify-content: center;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul li a {
    padding: .563rem;
    line-height: 1.5;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul li a img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (width >= 1024px) {
  .theme-kashi.stand-alone footer {
    padding: 3.75rem 0 4.875rem;
  }

  .theme-kashi.stand-alone footer .footer .section {
    grid-template: 
    "brand-copyright nav-social" / 25% 75%;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(1) {
    display: flex;
    height: 100%;
    text-align: unset;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(1) > div > div p:first-child {
    margin: 0 0 0 -1rem;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(1) > div > div p:last-child {
    margin: 3.875rem 0 0 -1rem;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(1) ul,
  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(2) ul {
    align-items: flex-start;

  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(1) ul li a,
  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(2) ul li a {
    text-align: unset;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul {
    justify-content: flex-end;
  }

  .theme-kashi.stand-alone footer .footer .section > div:nth-child(2) .columns > div div:nth-child(3) ul li a {
    text-align: right;
  }
}

/* stand alone - Special K */
.theme-special-k.stand-alone footer {
  padding: 2rem 0 4.5rem;
  border-top: 3px solid var(--primary-color);
}

.theme-special-k.stand-alone footer .footer {
  max-width: 768px;
}

.theme-special-k.stand-alone footer .footer .section {
  display: grid;
  gap: 1rem 0; 
  grid-template: 
    "brand" auto
    "nav" auto
    "social" auto
    "copyright" auto
    "links" auto;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(1) {
  grid-area: brand;
  width: 100%;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(1) img {
  width: 100px;
  height: auto;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(2) {
  grid-area: nav;
  width: 100%;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(2) ul {
  display: block;
  text-align: center;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(2) ul li {
  display: inline-block;
  margin: 0 1em;
  padding: .5em 0;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(2) ul li a {
  color: var(--primary-color);
  font-family: var(--special-k-accent-font);
  font-size: 1.125em;
  text-transform: uppercase;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(3) {
  grid-area: social;
  margin: 1em 0;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(3) ul {
  margin: 0;
  justify-content: center;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(4) p {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.25;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(5) {
  grid-area: links;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(5) ul {
  text-align: center;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(5) ul li {
  display: inline-block;
  margin: 0 1em;
  padding: .5em 0;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(5) ul li a {
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: underline;
}

@media(width >= 768px) {
  .theme-special-k.stand-alone footer .footer .section > div:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
    width: 768px;
  }

  .theme-special-k.stand-alone footer .footer .section > div:nth-child(2) ul {
    columns: 4;
    gap: 0;
  }

  .theme-special-k.stand-alone footer .footer .section > div:nth-child(2) ul li {
    display: block;
  }
}

@media(width >= 1024px) {
  .theme-special-k.stand-alone footer .footer .section > div:nth-child(1) {
    text-align: center;
  }
}

/* stand alone - Rice Krispies */
.theme-rice-krispies.stand-alone footer {
  padding: 0;
  font-family: var(--rice-krispies-font);
}

.theme-rice-krispies.stand-alone footer .footer {
  max-width: none;
  margin: 0;
}

.theme-rice-krispies.stand-alone footer .footer-section > div {
  max-width: 768px;
  margin: auto;
}

.theme-rice-krispies.stand-alone footer .section.secondary-bg-section {
  background-color: var(--secondary-color);
}

.theme-rice-krispies.stand-alone footer .section.tertiary-bg-section {
  background-color: var(--tertiary-color);
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) {
  display: grid;
  gap: 1rem 0;
  grid-template:
    "brand" auto
    "nav" auto;
  padding: 2em 0;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(1) {
  grid-area: brand;
  width: 100%;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(1) ul li a img{
  filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(0%) hue-rotate(43deg) brightness(108%) contrast(101%);
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(2) {
  grid-area: copyright;
  width: 100%;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(2) p {
  margin: 0;
  text-align: center;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(3) {
  grid-area: links;
  width: 100%;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(3) ul {
  text-align: center;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(3) ul li {
  display: inline-block;
  margin: 0 .5em;
  padding: .5em 0;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(3) ul li a {
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(3) ul li a:hover {
  color: #DDD;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(1) img {
  width: 110px;
  height: auto;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) {
  grid-area: nav;
  width: 100%;
  text-align: center;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) ul {
  display: block;
  text-transform: uppercase;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) ul li {
  display: inline-block;
  padding: .5em 0;
  margin: 0 .5em;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) ul li a {
  font-weight: 700;
  color: var(--white);
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) ul li a:hover {
  color: #DDD;
  text-decoration: underline;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) {
  display: grid;
  gap: 1rem 0;
  grid-template:
    "social" auto
    "copyright" auto
    "links" auto;
  padding: 2em 0;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(1) {
  grid-area: social;
  width: 100%;
}

.theme-rice-krispies.stand-alone footer .footer .section:nth-child(2) > div:nth-child(1) ul {
  margin: 0;
  justify-content: center;
}

.theme-special-k.stand-alone footer .footer .section > div:nth-child(4) {
  grid-area: copyright;
}

@media (width >= 768px) {
  .theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) ul {
    columns: 3;
  }
  
  .theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(2) ul li {
    display: block;
  }
}

@media (width >= 1024px) {
  .theme-rice-krispies.stand-alone footer .footer .section:nth-child(1) > div:nth-child(1) {
    text-align: center;
  }
}

/* stand alone - Frosted Flakes */
.theme-frosted-flakes.stand-alone footer {
  background-color: var(--primary-color);
  font-family: var(--frosted-flakes-font);
}

.theme-frosted-flakes.stand-alone footer .footer {
  max-width: 928px;
}

.theme-frosted-flakes.stand-alone footer .footer .section {
  display: grid;
  gap: 1rem 0; 
  grid-template: 
    "brand" auto
    "nav" auto
    "social" auto
    "copyright" auto
    "links" auto;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(1) {
  grid-area: brand;
  width: 100%;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(1) img {
  width: 10rem;
  height: auto;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) {
  grid-area: nav;
  width: 100%;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) ul {
  display: block;
  text-align: center;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) ul li {
  display: inline-block;
  margin: 0;
  padding: .5rem;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) ul li a {
  color: var(--white);
  font-weight: bold;
  font-size: 1.125em;
  text-transform: uppercase;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(3) {
  grid-area: social;
  margin: 1em 0;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(3) ul {
  margin: 0;
  justify-content: center;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(3) ul li img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(0%) hue-rotate(43deg) brightness(108%) contrast(101%);
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(4) {
  grid-area: copyright;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(4) p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(5) {
  grid-area: links;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(5) ul {
  text-align: center;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(5) ul li {
  display: inline-block;
  margin: 0;
  padding: .5em;
}

.theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(5) ul li a {
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
}

@media(width >= 768px) {
  .theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
  }

  .theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) ul {
    columns: 4;
    gap: 0;
  }

  .theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(2) ul li {
    display: block;
  }
}

@media(width >= 1024px) {
  .theme-frosted-flakes.stand-alone footer .footer .section > div:nth-child(1) {
    text-align: center;
  }
}

/* Mission Tiger */
.theme-mission-tiger footer {
  background-image: radial-gradient(circle, #0064ab 20%, #005692 50%, #00497a 75%);
  font-family: var(--frosted-flakes-font);
  color: var(--white);
  font-weight: 700;
}

.theme-mission-tiger footer .footer .section {
  display: grid;
  text-align: center;
  gap: 0; 
  grid-template: 
    "brand" auto
    "social" auto
    "copyright" auto
    "links" auto;
}

.theme-mission-tiger .footer .section p {
  margin: 0;
}

.theme-mission-tiger .footer .section > div:nth-child(1) {
  text-align: center;
}

.theme-mission-tiger .footer .section > div:nth-child(2) {
  grid-area: social;
}

.theme-mission-tiger .footer .section > div:nth-child(3) {
  grid-area: copyright;
}

.theme-mission-tiger .footer .section > div:nth-child(4) {
  grid-area: links;
}

.theme-mission-tiger .footer .section > div:nth-child(4) ul {
  margin: .5rem 0;
  gap: .5rem;
}

.theme-mission-tiger .footer .section > div:nth-child(4) ul li {
  padding: 0 .5rem;
}

.theme-mission-tiger .footer .section > div:nth-child(4) ul li::before {
  display: none;
}

.theme-mission-tiger .footer .section > div:nth-child(4) a {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
}

.theme-mission-tiger .footer .section > div:nth-child(4) a:hover,
.theme-mission-tiger .footer .section > div:nth-child(4) a:focus {
  opacity: .7;
}

.theme-mission-tiger footer .default-content-wrapper img {
  max-width: 300px;
  width: 70%;
  margin: 0 auto;
}

.theme-mission-tiger .footer .text-block.social-media-icons ul {
  justify-content: center;
  margin: 2rem 0;
  gap: 2rem;
}

.theme-mission-tiger .footer .text-block.social-media-icons .icon {
  height: 2.5rem;
  width: 2.5rem;
}

.theme-mission-tiger .footer .text-block.social-media-icons img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(0%) hue-rotate(43deg) brightness(108%) contrast(101%);
}

.theme-mission-tiger .footer .text-block.social-media-icons a:hover img {
  opacity: .7;
  filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(0%) hue-rotate(43deg) brightness(108%) contrast(101%);
}

@media (width >= 1024px) {
  .theme-mission-tiger footer {
    padding: 2.5rem 1.25rem 5.5rem;
  }

  .theme-mission-tiger footer .default-content-wrapper img {
    width: auto;
  }

  .theme-mission-tiger .footer .section > div:nth-child(4) ul {
    margin: 0;
    gap: 0;
  }
}

/* stand alone - Away From Home */
.theme-away-from-home.stand-alone footer {
  padding: 0 1rem 4rem;
}

.theme-away-from-home.stand-alone footer .footer {
  max-width: 1200px;
}

.theme-away-from-home.stand-alone footer .footer .section {
  display: grid;
  gap: 1rem 0;
  grid-template: 
    "brand" auto
    "nav" auto
    "copyright" auto
    "links" auto;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(1) {
  grid-area: brand;
  width: 100%;
  max-width: 324px;
  margin: 0 auto;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(1) img {
  width: 100%;
  max-width: unset;
  height: auto;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(2) {
  grid-area: nav;
  width: 100%;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(2) ul {
  display: block;
  text-align: center;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(2) ul li {
  display: block;
  margin: 0 1em;
  padding: .5em 0;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(2) ul li a {
  font-family: var(--body-font-family);
  font-weight: 700;
  font-size: 1.125em;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(3) {
  grid-area: copyright;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(3) p {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.563rem;
  font-weight: 500;
  text-align: center;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(4) {
  grid-area: links;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(4) ul {
  text-align: center;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(4) ul li {
  display: inline-block;
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(4) ul li::before {
  content: "|";
}

.theme-away-from-home.stand-alone footer .footer .section > div:nth-child(4) ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-grey);
}

.theme-away-from-home.stand-alone footer .columns.columns-6-cols > div > div > ul > li {
  padding-bottom: .375rem;
  line-height: 1.5625rem;
}

.theme-away-from-home.stand-alone footer .footer .columns.columns-6-cols {
  padding: 0 2.1875rem 1.6875rem 1.875rem;
  margin-bottom: 1.5rem;
}

@media(width >= 768px) {
  .theme-away-from-home.stand-alone footer .footer .section > div:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
  }

  .theme-away-from-home.stand-alone footer .footer .section > div:nth-child(2) ul li {
    display: inline-block;
    margin: 0 .5rem;
    padding: .25rem 0;
  }
}

/* Away From Home - collapse footer dropdowns on mobile by default */
.theme-away-from-home.stand-alone footer .columns.columns-6-cols > div > div > ul {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.theme-away-from-home.stand-alone footer .columns.columns-6-cols > div > div.active > ul {
  display: block;
  max-height: 50rem;
}

@media(width >= 1024px) {
  .theme-away-from-home.stand-alone footer .footer .section > div:nth-child(1) {
    text-align: center;
  }

  /* Keep desktop behavior expanded */
  .theme-away-from-home.stand-alone footer .columns.columns-6-cols > div > div > ul {
    display: block;
    max-height: 50rem;
    overflow: visible;
  }
}

@media print {
  footer {
    display: none;
  }
}

/* stand alone - Rice Krispies - kids Template */
.theme-rice-krispies.stand-alone.kids-template footer .content-center ul {
  text-align: center;
  justify-content: center;
}

.theme-rice-krispies.stand-alone.kids-template footer .content-center ul li {
  display: inline-block;
}

.theme-rice-krispies.stand-alone.kids-template footer .content-center p {
  margin-bottom: 0;
}

.theme-rice-krispies.stand-alone.kids-template footer a {
  color: var(--white);
  font-weight: 700;
}

.theme-rice-krispies.stand-alone.kids-template footer a:hover,
.theme-rice-krispies.stand-alone.kids-template footer a:focus {
  color: #ddd;
}