.nb-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--zr-bg);
  color: var(--zr-fg);
  font-weight: bold;
  text-align: center;
  box-shadow: 3px 3px 0px var(--zr-fg);
  border: var(--button-border-stroke) solid var(--zr-fg);
  border-radius: var(--button-border-radius);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.nb-button:hover {
  box-shadow: none;
  background-color: var(--zr-soft-gray);
}

.nb-button.disabled {
  box-shadow: none;
  background-color: var(--zr-soft-gray);
}


.nb-input {
  padding: 10px;
  background-color: var(--zr-bg);
  color: var(--zr-fg);
  border: 2px solid var(--zr-fg);
  border-radius: var(--button-border-radius);
  box-shadow: 2px 2px 0px 0px var(--zr-fg);
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.avatar {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--zr-fg);
  box-shadow: 2px 2px 0 var(--zr-fg);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--zr-fg);
  border-radius: 50px;
  background-color: var(--zr-primary-lilac);
  box-shadow: 3px 3px 0 var(--zr-fg);
}

.primary {
  background-color: var(--zr-primary-lilac);
  color: var(--zr-fg);
}

.primary:hover {
  background-color: #b482c9;
}

.rounded {
  border-radius: 9999px;
}

dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  gap: 10px;
}

dt {
  padding: 10px;
  background-color: var(--zr-primary-lilac);
  border: var(--button-border-stroke) solid var(--zr-fg);
  border-radius: var(--button-border-radius);
  text-align: left;
  align-content: center;
  font-weight: 700;
}

dd {
  flex-basis: 100%;
  flex-grow: 1;
  padding: 10px;
  margin-left: 50px;
  margin-bottom: 25px;
  align-content: center;
  border: var(--button-border-stroke) solid var(--zr-fg);
  border-radius: var(--button-border-radius);
  box-shadow: var(--emphasis-shadow-offset) var(--emphasis-shadow-offset) var(--zr-fg);
}


/*-- -------------------------- -->
<---           Table            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

  .cs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px auto;
  }

  .cs-table th {
    padding: 0.75rem 1rem;
    box-sizing: border-box;
  }

  .cs-table td {
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }

  .cs-table th {
    border: var(--button-border-stroke) solid var(--zr-fg);
    text-align: center;
    color: var(--zr-dark-plum);
  }

  .cs-table td {
    border: var(--button-border-stroke) solid var(--zr-fg);
  }

  .cs-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 100;
    /* Make sure it sits above the other cells */
    background-color: var(--zr-soft-gray);
    border: var(--button-border-stroke) solid var(--zr-fg);
    text-align: left;
  }

  .cs-table th {
    background-color: var(--zr-soft-gray);
  }

  .cs-table tr {
    color: var(--bodyTextColor);
  }
}



@media only screen and (min-width: 0rem) {
  .card-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0px;
    margin: 0px;
  }
}

@media only screen and (min-width: 64rem) {
  .card-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
  }
}

@media only screen and (min-width: 0rem) {
  .card-group-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0px;
    margin: 0px;
  }
}

@media only screen and (min-width: 64rem) {
  .card-group-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media only screen and (min-width: 0rem) {
  .card-group-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0px;
    margin: 0px;
  }
}

@media only screen and (min-width: 64rem) {
  .card-group-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
}

.card {
  justify-items: center;
  display: grid;
  padding: 15px;
  text-align: center;
  align-content: flex-start;
  gap: 15px;
  width: 100%;
  border: var(--button-border-stroke) solid var(--zr-fg);
  box-shadow: var(--emphasis-shadow-offset) var(--emphasis-shadow-offset);
  border-radius: var(--button-border-radius);
  transition: 0.3s border;
}

.card:hover {
  border: var(--button-border-stroke) solid var(--zr-primary-lilac);
}

.cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  z-index: 1;
  gap: 20px;
}



.body-outer {
  margin: 30px;
}

.anim-icon {
  width: 64px;
  height: 64px;
}


.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media only screen and (min-width: 0rem) {
  .button-row {
    flex-direction: column;
    align-items: space-between;
    gap: 20px;
  }
}

@media only screen and (min-width: 48rem) {
  .button-row {
    flex-direction: row;
    justify-content: space-evenly;
  }
}

.button-row button {
  width: auto;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: lowercase;
  text-align: left;
  font-weight: 600;
  color: var(--zr-fg);
  margin-bottom: 0.25rem;
  display: block;
  font-family: var(--accent-font-family);
}

@media (min-width: 0rem) {
  .cs-topper {
    text-align: center;
  }
}

@media (min-width: 48rem) {
  .cs-topper {
    text-align: left;
  }
}

.cs-social {
  height: 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  display: flex;
  margin-bottom: 1.5rem;
}

.cs-social-link {
  text-decoration: none;
  width: 2rem;
  height: 2rem;
  background-color: #f7f7f7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.cs-social-link:hover {
  background-color: var(--primary);
}

.cs-social-link:hover .cs-social-icon {
  filter: grayscale(1) brightness(10000%);
  opacity: 1;
}

.cs-social-icon {
  width: 0.75rem;
  height: auto;
  display: block;
}

#cs-navigation {
  width: 94%;
  max-width: 90rem;
  height: 4rem;
  /* 12px - 24px */
  padding: clamp(0.75rem, 1vw, 0.75rem) 0;
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
  background-color: var(--zr-bg);
  box-shadow: 3px 3px 0px var(--zr-fg);
  /* 12px - 24px */
  border-radius: var(--button-border-radius);
  border: 2px solid var(--zr-fg);
  display: flex;
  align-items: center;
  position: fixed;
  top: 2rem;
  left: 50%;
  z-index: 10000;
  transform: translateX(-50%);
  transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
}

#cs-navigation .cs-container {
  width: 100%;
  max-width: 90rem;
  margin: 0;
  padding: 0 1.5rem;
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

#cs-navigation .cs-button-solid {
  font-size: 1rem;
  /* 46px - 56px */
  line-height: 2rem;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin: 0;
  color: var(--zr-fg);
  min-width: 9.375rem;
  padding: 0 2rem;
  background-color: var(--primary);
  display: inline-block;
  position: relative;
  z-index: 1;
  /* prevents padding from adding to the width */
  box-sizing: border-box;
  transition: color .3s;
  border-radius: 50px;
}

#cs-navigation .cs-button-solid:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  background: var(--zr-dark-plum);
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width .3s;
  border-radius: 50px;
}

#cs-navigation .cs-button-solid:hover {
  color: var(--zr-bg);
}

#cs-navigation .cs-button-solid:hover:before {
  width: 100%;
}

#cs-navigation .cs-logo {
  font-weight: 700;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body {
    position: relative;
    z-index: 1;
  }

  body:before {
    content: '';
    width: 100%;
    height: 0%;
    background: #fff;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    transition: height .3s;
  }

  body.scroll #cs-navigation .cs-ul-wrapper {
    top: 100%;
  }

  body.cs-open {
    overflow: hidden;
  }

  body.cs-open:before {
    height: 100%;
  }




  #cs-navigation.cs-active:before {
    transform: translateX(-50%) scale(1.03);
  }

  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
  }

  #cs-navigation.cs-active .cs-toggle {
    transform: rotate(180deg);
  }

  #cs-navigation.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }


  #cs-navigation .cs-logo {
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 10;
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--zr-fg);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }

  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }

  #cs-navigation .cs-toggle {
    width: 32px;
    height: 32px;
    margin: 0;
    border-radius: 0.25rem;
    background-color: var(--zr-dark-plum);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform .6s;
  }

  #cs-navigation .cs-nav {
    /* sends it to the right in the 3rd position */
    order: 3;
  }

  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }

  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }

  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }

  #cs-navigation .cs-box {
    /* 24px - 28px */
    width: 18px;
    height: 18px;
    position: relative;
  }

  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--zr-bg);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  #cs-navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform .5s, top .3S, left .3S;
    animation-duration: .7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }

  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top .3s, left .3s, transform .5s;
    animation-duration: .7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }

  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom .3s, opacity .3s;
  }

  #cs-navigation:has(.cs-active) {
    border-radius: var(--button-border-radius) var(--button-border-radius) 0 0;
    border-bottom: 0px;
    box-shadow: 3px 0px 0px var(--zr-fg);
  }

  #cs-navigation .cs-ul-wrapper {
    width: 100.45%;
    height: 90vh;
    border: 2px solid var(--zr-fg);
    border-top: 0px;
    border-radius: 0 0 var(--button-border-radius) var(--button-border-radius);
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 95%;
    left: -.2%;
    z-index: 0;
    margin: 0px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s, opacity .3s;
    background-color: var(--zr-bg);
    box-shadow: 3px 3px 0px var(--zr-fg);
  }

  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  #cs-navigation .cs-li {
    list-style: none;
    margin-right: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform .6s, opacity .9s;
  }

  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: .05s;
  }

  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: .1s;
  }

  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: .15s;
  }

  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: .2s;
  }

  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: .25s;
  }

  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: .3s;
  }

  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: .35s;
  }

  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: .4s;
  }

  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: .45s;
  }

  #cs-navigation .cs-li-link {
    font-size: 1.5rem;
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--zr-dark-plum);
    display: inline-block;
    position: relative;
  }

  #cs-navigation .cs-li-link:before {
    /* active state underline */
    content: '';
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: none;
    bottom: -0.125rem;
    left: 0;
  }

  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }

}


/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }

  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--zr-bg);
    background-color: var(--zr-bg);
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
  }

  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }

  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity .3s;
  }

  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }

  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: padding .3s, margin .3s, height .3s, opacity .3s, visibility .3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: var(--zr-fg);
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }

  #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }

  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }

  #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }

  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    display: inline-block;
  }

  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: var(--zr-bg);
    border-radius: 0 0 1.5rem 1.5rem;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    box-shadow: 3px 3px 0px var(--zr-fg);
    border: 2px solid var(--zr-fg);
    border-top: 0px;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    z-index: 100;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s, visibility .3s, opacity .3s;
  }

  #cs-navigation .cs-drop-li {
    list-style: none;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity .6s, transform .6s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: .05s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: .1s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: .15s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: .2s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: .25s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: .3s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: .35s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: .4s;
  }

  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: .45s;
  }

  #cs-navigation .cs-li-link.cs-drop-link {
    text-transform: capitalize;
    white-space: nowrap;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    padding: 0.75rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }

  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
  }

  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {


  #cs-navigation .cs-toggle {
    display: none;
  }

  #cs-navigation .cs-logo {
    width: auto;
    height: 1.5rem;
    /* margin-right auto pushes everything away from it to the right */
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--zr-fg);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }

  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }

  #cs-navigation .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--zr-fg);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s,
      color 0.3s;
  }


  #cs-navigation .cs-ul-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    /* absolutely positioned to be dead center */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  #cs-navigation .cs-ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }

  #cs-navigation .cs-li {
    list-style: none;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    /* prevent flexbox from squishing it */
    flex: none;
  }

  #cs-navigation .cs-li-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color .3s;
  }

  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }

  #cs-navigation .cs-li-link.cs-active {
    color: var(--zr-dark-plum);
  }


}



/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/

/* Mobile - 360px - Contains hover state */
@media only screen and (min-width: 0rem) {
  #cs-footer {
    padding: 2.5rem 1rem;
    background: #1a1a1a;
  }

  #cs-footer .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }

  #cs-footer .cs-ul {
    padding: 0;
    margin: auto;
    display: flex;
    /* make flexbox arrange top to bottom */
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  #cs-footer .cs-li {
    list-style: none;
    text-align: center;
    margin: 0;
  }

  #cs-footer .cs-copyright {
    font-size: 0.9375rem;
    line-height: 1.5em;
    margin-top: 1.25rem;
    color: var(--zr-soft-gray);
    display: block;
    /* send to first position at the bottom */
    order: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }

  #cs-footer .cs-link {
    /* 15px - 17px */
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.5em;
    text-decoration: none;
    color: var(--zr-bg);
    position: relative;
  }

  #cs-footer .cs-link:hover:before {
    width: 100%;
  }

  #cs-footer .cs-link:before {
    /* top right box */
    content: "";
    width: 0%;
    height: 0.1875rem;
    background: var(--zr-bg);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }
}

/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
  #cs-footer .cs-ul {
    flex-direction: row;
    /* push everything to the left */
    justify-content: flex-start;
    /* 44px - 88px */
    gap: clamp(2.75rem, 7vw, 5.5rem);
  }

  #cs-footer .cs-copyright {
    /* marign auto on the left pushes away from the rest of the flex children */
    margin: 0 0 0 auto;
    /* send to the right most position */
    order: 2;
  }
}

.footer-details {
  color: var(--zr-soft-gray);
  text-align: center;
  font-size: smaller;
}

.footer-details a {
  color: inherit;
}