.custom-button {
    display: flex;
}
.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: flex;
    padding: 10px 15px 8px;
    font-size: 15px;
    line-height: 1;
    color: var(--Gray);
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--Yellow);
    font-family: 'Roboto Condensed', sans-serif;
    justify-content: center;
    margin-bottom: 30px;
}
.custom-button .button-link i {
    font-size: 12px;
    margin: 1px 0 0 5px;
}
.custom-button .button-link:hover {
    
}
.custom-button .button-link:focus {
    outline: none;
}

@media screen and (min-width: 64em) {
    .custom-button .button-link {
        padding: 10px 15px 8px;
        font-size: 17px;
    }
    .custom-button .button-link i {
        font-size: 14px;
        margin: 1px 0 0 5px;
    }
}