.ops-button {
    display: inline-block;
    position: relative;
    line-height: 2.0;
    text-align: center;
    border: 1px solid $color__ops_blue;
    border-radius: 5px;
    color: $color__ops-white;
    text-decoration: none !important;
    font-weight: 600;
    transition: $transition__color-bg-color-border-color-linear;
    cursor: pointer;
    width: auto;
    white-space: nowrap;
    padding: 11px 15px;
    font-size: 13px;
    min-width: 200px;
    // @include linear-gradient(to top right, #0175FF, #0061D4);
    background: $color__ops-blue;

    &:hover {
        color: $color__ops-white;
        background: $color__ops-blueDark;
        border-color: $color__ops-blueDark;
    }

    &:active, &:focus {
        color: $color__ops-white;
    }

    &.ops-min-width-auto {
        min-width: auto;
    }

    &.ops-button-block {
        display: block;
        min-width: auto;
        width: 100%;
    }

    &.ops-transparent {
        background: none;
        color: $color__ops-blue;
        border-color: $color__ops-borderLight;

        &:hover {
            color: $color__ops-blueDark;
            border-color: $color__ops-blueDark;
        }
    }

    &.ops-button-icon {
        padding: 6px 12px 4px 12px;
        width: auto;
        min-width: 0;
        text-align: center;
    }

    &.ops-button-sm {
        font-size: 11px;
        padding: 0.6rem 1.0rem;
        min-width: auto;
        line-height: 1.5;
    }

    &.ops-button-lg {
        font-size: 18px;
    }

    &.ops-button-primary {
        color: #fff !important;
    }

    &.ops-button-success {
        background: $color__ops-green;
        color: $color__ops-white !important;
        border-color: $color__ops-green;

        &:hover {
            background: #00b668;
            border-color: #00b668;
        }
    }

    &.ops-button-default {
        color: #8A96A0;
        background: #fbfbfb;
        border-color: #e6eaee;

        &:hover {
            color: $color__ops-blueDark;
            border-color: $color__ops-blueDark;
        }
    }

    &.ops-button-light {
        color: #8A96A0;
        background: #fbfbfb;
        border-color: #e6eaee;

        &:hover {
            color: $color__ops-blueDark;
            border-color: $color__ops-blueDark;
        }
    }

    &.ops-button-danger {
        background: $color__ops-red;
        border-color: $color__ops-red;
        color: $color__ops-white;

        &:hover {
            background: $color__ops-redDark;
            border-color: $color__ops-redDark;
        }
    }

    &.ops-button-disabled {
        opacity: 0.5;
        cursor: default;
    }

    &.pull-right {
        float: right;
    }

    &.no-outline {
        outline: none;
    }

    &.ops-button-height-40 {
        line-height: 1.2;
        height: 40px;
    }
}

.ops-button-group {
    margin-top: 16px;
    margin-bottom: 16px;
}

.ops-icon-button-group {
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
