.is-style-cpa-button>.wp-block-button__link {
    background-color: transparent;
}

.is-style-cpa-button>.wp-block-button__link {
    color: #fff !important;
    text-decoration: none !important;
    background: -webkit-gradient(linear, left top, right top, from(#6f3590), to(#b3436e));
    background: -webkit-linear-gradient(left, #6f3590 0, #b3436e 100%);
    background: -moz-linear-gradient(left, #6f3590 0, #b3436e 100%);
    background: -o-linear-gradient(left, #6f3590 0, #b3436e 100%);
    background: linear-gradient(90deg, #6f3590 0, #b3436e 100%);
    position: relative;
    z-index: 10;
    border-width: 0;
    overflow: hidden;
    padding: 1em 2.875em;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 300;
    display: inline-block;
}

.is-style-cpa-button>.wp-block-button__link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#0f206c), to(#72246c));
    background: -webkit-linear-gradient(left, #0f206c 0, #72246c 100%);
    background: -moz-linear-gradient(left, #0f206c 0, #72246c 100%);
    background: -o-linear-gradient(left, #0f206c 0, #72246c 100%);
    background: linear-gradient(90deg, #0f206c 0, #72246c 100%);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -10;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    -moz-transition: opacity .3s;
    transition: opacity .3s;
}

.is-style-cpa-button>.wp-block-button__link::after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: " ";
}

.is-style-cpa-button>.wp-block-button__link:hover::before {
    opacity: 0;
}