span.promotional-callout {
    font-size: 125%;
    font-weight: 700;
    color: var(--light-gray);
    position: relative;
}

span.promotional-callout.callout-highlight::before {
  background-color: var(--lfcu-teal);
  position: absolute;
  content: "";
  height: 55%;
  width: 0%;
  z-index: -1;
  bottom: 0;
  transform: translate(3px, -5%);
  animation: highlight 0.4s 1s normal forwards;
}

.offer-box {
    gap: var(--padding-sm);
}

.offer-detail-box {
    height: 84px;
    width: 100%;
    background-color: var(--solid-white);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin: var(--padding-xs);
    border-radius: var(--border-radius-md);
    padding: var(--padding-xl);
}

.instruction-box strong {
    display: block;
    margin-bottom: var(--padding-sm);
}

.instruction-box {
    padding-left: var(--padding-xl);
    padding-right: var(--padding-xl);
    margin-bottom: var(--padding-sm);
}

.offer-detail-box i {
    font-size: var(--font-lg);
    color: var(--lfcu-green);
    margin-right: var(--padding-xl);
}

.offer-detail-box p {
    margin-bottom: 0px;
}

.bb-section h2.centered {
    text-align: center;
}

.bubble-container {
    height: 325px;
    width: 325px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-md);
}

.instruction-icon {
    margin-right: var(--padding-xl);
    max-width: 42px;
}

@keyframes bubble-breathe {
    0% {
        transform: rotate(0deg) scale(100%);
    }
    70% {
        transform: rotate(4deg) scale(108%);
    }
    100% {
        transform: rotate(0deg) scale(100%);
    }
}

@keyframes highlight {
    0% {
        width: 0%
    }

    100% {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .bb-banner.banner-large.extra-tall {
        min-height: 550px !important;
    }

    .offer-box {
        gap: 0px;
    }

    .bubble-container {
        height: 275px;
        width: 275px;
        margin-bottom: var(--padding-xl);
    }

    .instruction-box {
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: var(--padding-sm);
    }

    .start-instructions {
        margin-top: var(--padding-xl);
    }

    .instruction-icon {
        margin-right: auto;
    }

    .instructions-instructions {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
}

@media screen and (max-width: 600px) {
    .offer-detail-box p {
        font-size: 12px !important;
    }
}


@media screen and (max-width: 400px) {
    .offer-detail-box {
        height: 128px;
    }
}