.btn,
button,
input[type="submit"] {
    background: transparent;
    color: #fff !important;
    background: transparent !important;
    box-shadow: 4px 4px 0px 0px var(--site-primary) !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: var(--site-primary) !important;
    border-radius: 6px !important;
    padding: 20px 32px !important;
    color: var(--site-primary) !important;       
    text-align: center !important;
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 20px;
    text-box: cap alphabetic;

    font-family: var(--font-condensed);
    font-weight: bold;
    letter-spacing: 0px;
    text-transform: uppercase;

    transition: all 0.25s;
    border-radius: 260px !important;

    &.center {
        width: fit-content;
        margin-inline: auto;
    }

    &.white {
        border-color: #fff !important;
        color: #fff !important;
        box-shadow: 4px 4px 0px 0px #fff !important;
    }

    &.large {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    &.medium {
        height: 40px;
        padding: 0px 20px;
    }

    &.round {
        border-radius: 150px;
    }  

    &:hover {
        box-shadow: none !important;
        transform: translate(4px, 4px);
    }
    
}

.btn:hover {

}