﻿
.Button {
    font: 13pt "AppFont-Bold";
    text-transform: uppercase;
    text-align: center;
    width: auto;
    padding: 0px 12px;
    border: none;
    height: 32px;
    /*-moz-box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);*/
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.k-ie .Button {
    font: 12pt "AppFont-Bold";
}

    .Button--standard {
        background-color: #37474F;
        color: #fff;
    }

    .Button--standard:hover {
        background-color: #C3C5CD;
        cursor: pointer;
        color: #37474F;
        text-decoration: initial;
    }

    .Button--standard:active {
        background-color: #000;
         color: #fff;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .Button--standard:disabled {
        color: #f1f1f1;
        background-color: #bbb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        cursor: not-allowed;
    }

    .Button--standard:focus {
        color: #fff;
        text-decoration: initial;
    }

    .Button--emphasized {
        color: #0F0F59;
        background-color: #82D8FF;
    }

    .Button--emphasized:hover {
        background-color: #CAF0FF;
        cursor: pointer;
        text-decoration: initial;
        color: #0F0F59;
    }

    .Button--emphasized:active {
        background-color: #4CC6FF;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #0f0f59;
    }

    .Button--emphasized:focus {
        outline: none;
        color: #0f0f59;
        text-decoration: initial;
    }

    .Button--emphasized:disabled {
        color: #C3C5CD;
        background-color: #CAF0FF;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        cursor: not-allowed;
    }


.Button--header {
    display: inline-block;
    float: right;
    margin-top: 14px;
}
