/*
 * Styles des boutons
 */
.home-center .button
{
    width: 130px;
}
.home-center .button:last-child
{
    margin: 0 0 0 80px;
}
.button
{
    /* structure */
    padding: 1em 1em;
    display: inline-block;
    /* presentation */
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.5em;
    text-decoration: none;
    transition: background-color 0.25s, box-shadow 0.25s;
    font-size: 17px;
    text-align: center;
}
.button[disabled],
.button[disabled]:hover
{
    background-color: silver;
    box-shadow: none;
    color: grey;
}

.button-cancel
{
    background-color: #FF3300;
    color: white;
}
.button-cancel:hover
{
    background-color: #FF6633 !important;
}

.button-primary
{
    background-color: #616060;
    color: white;
}
.button-primary:hover,
.button-cancel:hover,
.button-alert:hover
{
    background-color: #6495ed;
    box-shadow: 0 0 4px 2px rgba(102, 204, 153, 0.5);
    color: white;
}
.button-alert
{
    background-color: #F44336;
    color: white;
}

.button:active,
{
    box-shadow: none;
    text-decoration: none;
}
.button:hover,
.button:focus
{
    text-decoration: none;
}
a.disabled {
    pointer-events: none;
    cursor: default;
}