.cta-link-primary.play > a::after,
.cta-link-primary.play > button::after,
a.cta-link-primary.play::after,
button.cta-link-primary.play::after,
a.primary.play::after {
  content: "";
}

/* Fixed CTA buttons */
#fixed-cta-wrapper {
    z-index: 99;
    position: fixed;
    display: flex;
    gap: 0;
    flex-direction: column;
    width: 100%;
    left: 0;
    bottom: 0;
}

#fixed-cta-wrapper button {
    border-radius: 0;
    margin: 0;
    width: 100%;
}

/* tablet up */
@media (min-width: 641px) {
    #fixed-cta-wrapper {
        flex-direction: row;
        bottom: 1rem;
        left: 1rem;
        gap: .5rem;
    }
  
    #fixed-cta-wrapper button {
        border-radius: 5px !important;
        width: auto;
    }
}