.custom-button {
    --outline-color: var(--yellow-fe);
    --background-color: var(--yellow-fe);
    --background-color-hover: var(--white);
    --text-color: var(--blue-16);

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

.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 {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    background-color: var(--background-color);
    font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid var(--background-color);
	transition: background 200ms ease-in-out;
	padding: 11px 21px;
	text-transform: uppercase;
	font-family: var(--font-body-bold);
	line-height: 1;
}

@media (hover: hover) {
    .custom-button .button-link:hover {
        background-color: var(--background-color-hover);
    }
}

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