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

.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;
    font-family: proxima-nova, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    color: #FFF;
    text-decoration: none;
    background-color: #15b3bb;
}


.custom-button .button-link::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    left: 5px;
    top: 5px;
    pointer-events: none;
    border: 1px solid #FFF;
}

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

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