﻿.eduzzbutton {
    color: #fff;
    background-color: #A161BD;
    padding: 12px 24px 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    margin: 20px 0px 20px 0px;
    display: inline-block;
    border: 0;
    line-height: 20px !important;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
    text-transform: none;
    cursor: pointer;
}

    .eduzzbutton:before {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 90px;
        top: 0px;
        left: 0;
        margin: auto;
        background: #fff;
        opacity: 0.1;
        transition: all 0.5s ease-in-out;
    }

    .eduzzbutton:hover {
        background-color: #A161BD !important;
        cursor: pointer;
    }

    .eduzzbutton:active, .eduzzbutton:focus, .eduzzbutton:hover {
        outline: none;
        box-shadow: none;
    }

        .eduzzbutton:active:before, .eduzzbutton:focus:before, .eduzzbutton:hover:before {
            width: 100%;
        }

    .eduzzbutton.affirmative {
        color: #fff;
    }