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

.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: 9px 22px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    background-color: #d15900;
    min-width: 142px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.custom-button .button-link i{
    font-size: 12px;
    padding-left: 6px;
}

.custom-button.alt-style {
    position: relative;
    overflow: hidden;
    background-color: #007483;
    width: 130px;
    border-radius: 50%;
}
.custom-button.alt-style.align-left {
    margin-right: auto;
}
.custom-button.alt-style.align-center {
    margin: 0 auto;
}
.custom-button.alt-style.align-right {
    margin-left: auto;
}

.custom-button.alt-style .button-link {
    background-color: transparent;
    font-family: Raleway, sans-serif;
    font-weight: normal;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 20px;
    min-width: 130px;
}

.custom-button.alt-style img {
    position: absolute;
    top: -1px;
    pointer-events: none;
}

.custom-button.alt-style .knockout {
    width: 130px;
    height: 28px;
    border-left: 10px solid #007483;
    border-right: 10px solid #007483;
    margin: 51px 0;
    position: absolute;
    z-index: 20;
    overflow: hidden;
    pointer-events: none;
    transform: scale3d(1, 1, 1) rotateZ(-15deg);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

@media (min-width: 1025px) {

    .custom-button .button-link{
        overflow: visible;
        min-width: 166px;
        font-size: 19px;
        padding: 11px 21px 11px 21px;
        -webkit-transition: all 200ms ease;
        -moz-transition: all 200ms ease;
        -o-transition: all 200ms ease;
        transition: all 200ms ease;
        text-align: center;
    }


    .custom-button:not(.alt-style) .button-link:hover {
        overflow: hidden;
        display: block; 
        padding-right: 5px;
        border-right: 8px solid #d15900;
        background-color: #007483;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .custom-button.alt-style:hover .knockout {
        transform: scale3d(1, 0, 1) rotateZ(0);
    }
}
