.custom-button {
    display: inline-block;
}

.custom-button.backend {
    background: #2271b1;
}

.custom-button a {
    width: auto;
    padding: calc(0.5em + 2px) calc(1em + 2px);
    display: inline-block;
    position: relative;
    border-radius: 2em;
    background: var(--electric-purple);
    color: var(--white);
    text-decoration: none;
    line-height: 1;
    transition: all 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.custom-button a:after {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 0px);
    height: calc(100% + 4px);
    background: var(--electric-purple);
    top: -2px;
    left: 0px;
    z-index: -1;
    border-radius: 2em;
    transition: all 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.custom-button a span.animated-arrow {
    margin-left: 0.25em;
}

.custom-button a:hover .animated-arrow .head {
    transform: translateX(8px);
}

.custom-button a:hover .animated-arrow .line-1 {
    transform: scaleX(1.3);
}

.custom-button a:hover {
    padding-left: calc(1em - 2px);
    padding-right: calc(1em + 2px);
}

.custom-button a:hover:after {
    width: calc(100% + 16px);
    height: 100%;
    top: 0px;
    left: -8px;
    z-index: -1;
    border-radius: 2em;
}

span.custom-button-text {
    display: inline-block;
    vertical-align: middle;
}

.custom-button.aligncenter {
    margin: auto;
    display: block;
    text-align: center;
}

.custom-button.green-mint-custom-button a, .custom-button.green-mint-custom-button a:after {
    background: var(--green-mint);
    color: var(--purple);
}