.chama-cta-button,
.chama-cta-button:focus {
    color: #000;
    background-color: #fff;
    text-transform: uppercase;
    text-decoration: none !important;
    font-weight: bold;
    text-shadow: none;
    padding: .35rem .5rem;
    font-size: 1.15rem;
    line-height: 1.35;
    border-radius: .3rem;
    display: inline-flex;
    margin: 5px 0;
    border: 1px solid #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.chama-cta-button:hover {
    background-color: transparent;
    color: #fff
}

.chama-protected-content-cta {
    border-radius: 7px;
    text-shadow: 2px 2px 4px #000;
    padding: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    background: linear-gradient(-45deg, #2c3a47, #b33771, #39578b, #2497aa);
    background-size: 400% 400%;
    animation: 15s infinite gradient
}

@keyframes gradient {

    0%,
    100% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }
}