﻿

/* NEW WORDPRESS THEMED ADDEVENT BUTTON STYLE RULE(S) */

.addeventatc {
    color: #FFF !important;
    --btn-bg: var(--wp--custom--color--juf-purple);
    --btn-border: var(--wp--custom--color--juf-purple);
    --btn-border-inner: var(--wp--custom--color--juf-purple);
    --btn-text: var(--wp--custom--color--white);
    background-color: var(--btn-bg);
    border: 3px solid var(--btn-border);
    border-radius: 30px;
    font-size: var(--wp--custom--font--size--15-16);
    font-weight: var(--wp--custom--font--weight--reg);
    transition: all var(--wp--custom--transition--duration) var(--wp--custom--transition--timing);
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    text-decoration: none;
    z-index: inherit !important;
}

    .addeventatc:hover {
        text-decoration-color: transparent;
        text-underline-offset: -1px;
        background-color: var(--btn-bg);
        border: 3px solid var(--btn-border);
        border-radius: 30px;
        box-shadow: inset 0 0 0 3px var(--btn-border-inner) !important;
        color: var(--btn-text);
        font-size: var(--wp--custom--font--size--15-16);
        --btn-bg: var(--wp--custom--color--juf-pink);
        --btn-border: var(--wp--custom--color--juf-pink);
        --btn-text: var(--wp--custom--color--white);
        --btn-border-inner: var(--wp--custom--color--white);
    }
    /* Hides the AddEvent calendar glyph/icon */
    .addeventatc .addeventatc_icon {
        display: none;
    }
