/*-- -------------------------- -->
<---       Success Page         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #success-1 {
    padding: var(--sectionPadding);
    /* Animated check circle */
    /* Content */
    /* Info items */
    /* Buttons */
  }
  #success-1 .cs-container {
    width: 100%;
    max-width: 47.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    text-align: center;
  }
  #success-1 .cs-check {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
  }
  #success-1 .cs-check svg {
    width: 100%;
    height: 100%;
  }
  #success-1 .cs-check-circle {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: draw-circle 0.6s ease forwards;
  }
  #success-1 .cs-check-tick {
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-tick 0.4s ease 0.55s forwards;
  }
  @keyframes draw-circle {
    to {
      stroke-dashoffset: 0;
    }
  }
  @keyframes draw-tick {
    to {
      stroke-dashoffset: 0;
    }
  }
  #success-1 .cs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #success-1 .cs-title {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 4.5vw, 3.0625rem);
  }
  #success-1 .cs-text {
    max-width: 37.5rem;
    margin: 0;
  }
  #success-1 .cs-info-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--o2grey);
  }
  #success-1 .cs-info-item {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--o2grey);
    text-align: left;
  }
  #success-1 .cs-picture {
    width: 2.625rem;
    flex-shrink: 0;
    padding-top: 0.25rem;
  }
  #success-1 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
  }
  #success-1 .cs-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #success-1 .cs-h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--headerColor);
    margin: 0;
  }
  #success-1 .cs-info-text p {
    font-size: 1rem;
    line-height: 1.6em;
    color: #575757;
    margin: 0;
  }
  #success-1 .cs-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #success-1 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--headerColor);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  #success-1 .cs-link:hover {
    opacity: 0.6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #success-1 .cs-info-item {
    align-items: center;
  }
  #success-1 .cs-button-group {
    flex-direction: row;
    justify-content: center;
  }
}
/*-- -------------------------- -->
<---      Subscribe Nudge        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #success-subscribe {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    z-index: 1;
  }
  #success-subscribe .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #success-subscribe .cs-subscribe-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #success-subscribe .cs-topper {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }
  #success-subscribe .cs-title {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 4.5vw, 3.0625rem);
    color: var(--bodyTextColorWhite);
    margin: 0;
  }
  #success-subscribe .cs-text {
    max-width: 32.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
  }
  #success-subscribe .cs-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  #success-subscribe .cs-button-solid {
    background-color: white;
    color: black;
  }
  #success-subscribe .cs-button-solid:before {
    background: black;
  }
  #success-subscribe .cs-button-solid:hover {
    color: white;
  }
  #success-subscribe button.cs-button-solid {
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  #success-subscribe .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
  }
}
