#membership-token-cta:link,
#membership-token-cta:visited,
#membership-token-cta:active
{
    --borderWidth: 3px;
    text-decoration: none;
    font-size:calc(120%);
    height: fit-content;
    letter-spacing:2px;
    padding:calc(12px);
    font-family:"linealbold";
    text-transform:uppercase;
    color:var(--pgc_base_white);
    /*background: linear-gradient(60deg, #f79533, #2947bd, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);*/
    background: linear-gradient(108deg, #305df6, #2947bd, #305df6, #3656D3, #ABB8ED, #305df6, #1449F5, #0939D7);
    border-radius: calc(2 * var(--borderWidth));
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
}
#membership-token-cta:hover
{
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--pgc_base_white);
}
@keyframes blink 
{
    from { opacity: 0;}
    to {opacity: 1.0;}
}

@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
