﻿/*Animated Button*/
.button {
    border-radius: 4px;
    background-color: #2489ca;
    border: none;
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 14px;
    width: 180px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 3px;
}

    .button span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover span {
        padding-right: 25px;
    }

        .button:hover span:after {
            opacity: 1;
            right: 0;
        }


/*  End Animated Button  Hover>>*/
/*notification button*/
.notification {
    background-color: #2489ca;
    color: white;
    text-decoration: none;
    padding: 10px 36px;
    position: relative;
    display: inline-block;
    border-radius: 4px;
}

    .notification:hover {
        background: red;
    }

    .notification .badge {
        position: absolute;
        top: -10px;
        right: -10px;
        padding: 5px 10px;
        border-radius: 50%;
        background-color: red;
        color: white;
    }

/* End notification button*/
