.custom-button {
    --outline-color: #0a819f;
    --background-color: var(--background-gradient);
    --background-color-hover: var(--light-blue);
    --text-color: #FFF;

    display: flex;
    margin-bottom: var(--space-3);
}

.custom-button.align-left {
    justify-content: flex-start;
}

.custom-button.align-center {
    justify-content: center;
}

.custom-button.align-right {
    justify-content: flex-end;
}

.custom-button .button-link {
    position: relative;
    display: inline-block;
    padding: var(--space-3) var(--space-10);
    font-size: 12px;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-style: italic;
    color: var(--text-color);
    text-decoration: none;
    background: var(--background-color);
}
.custom-button .button-link *{
    position: relative;
    z-index: 2;
}

@media (hover: hover) {
    .custom-button .button-link:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background-color: #0ebfcf;
        transition: opacity ease-in-out 0.6s;
    }
    
    .custom-button .button-link:hover::before {
        opacity: 1;
    }

    .custom-button .button-link::after {
        content: url(/includes/public/assets/shared/icon-arrow-right-white.svg);
        position: absolute;
        right: 40px;
        top: calc(50% + 3px);
        transform: translate(0, -50%);
        opacity: 0;
        transition: all ease-in-out 0.6s;
        width: 6.5px;
    }
    .custom-button .button-link:hover::after {
        opacity: 1;
        transform: translate(15px, -50%);
    }
}

.custom-button .button-link:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--outline-color);
    outline: none;
}

@media (min-width: 64em) {
    .custom-button .button-link {
        font-size: 16px;
    }

}