.tbutton {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;

    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.2);

    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    vertical-align: middle;
    line-height: normal;

    white-space: nowrap;
    word-spacing: 0;

    overflow: hidden;
    text-overflow: ellipsis;

    margin: 0;
    padding: 8px 15px;

    display: inline-block;
    *zoom: 1;
    position: relative;
    cursor: default;
    outline: none !important;
    filter: none;
    color: white;
    background-repeat: repeat;
}
.tbutton:hover {
    background-image: url(imgs/lighten.png);
}
.tbutton:active {
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3) inset;
    background-image: url(imgs/darken.png);
}

/* --- disabled tbutton --- */
.tbutton.tbutton_disabled {
    opacity: .65;
}
.tbutton.tbutton_disabled:hover{
    background-image: none;
}
.tbutton.tbutton_disabled:active {
    box-shadow: none;
    cursor: not-allowed;
}

/* --- tbutton ikon --- */
.tbutton img {
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
    position: relative;
    top: -1px;
}

/* --- SZÍNEK ---------------------------------------------------------------- */

.tbutton_green,
.tbutton_green.tbutton_disabled:hover {
    background-color: #51A351;
}

.tbutton_blue,
.tbutton_blue.tbutton_disabled:hover {
    background-color: #2F96B4;
}

.tbutton_red,
.tbutton_red.tbutton_disabled:hover {
    background-color: #BD362F;
}

.tbutton_gray,
.tbutton_gray.tbutton_disabled:hover {
    background-color: #555;
}

.tbutton_orange,
.tbutton_orange.tbutton_disabled:hover {
    background-color: #F89406;
}

.tbutton_brown,
.tbutton_brown.tbutton_disabled:hover {
    background-color: #896F59;
}

.tbutton_silver,
.tbutton_silver.tbutton_disabled:hover{
    background-color: #F3F3F3;
    color: #333;
}

.tbutton_purple,
.tbutton_purple.tbutton_disabled:hover{
    background-color: #704BBF;
    color: #FFF;
}