.custom-button {
    display: flex;
    margin-bottom: 25px;
}

.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 {
    font-family: "proxima-nova", sans-serif;
    display: inline-block;
    padding: 9px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    background-color: #a1b5bc;
}

.custom-button .button-link:hover {
    background-color: #a1b5bc;
}

.custom-button .button-link:focus {
    outline: 1px dashed #a1b5bc;
}