/* ##### BTN ##### */
.btn {
    background-color: #f3bc22;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
    text-decoration: none !important;
    vertical-align: middle;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn:hover, .btn:focus, a:hover .btn, a:focus .btn, label:hover .btn, .btn.active {opacity: 0.8;}

.btn i {pointer-events: none;}

/* ##### BTN BTN-MULTI-LINED ##### */
.btn.btn-multi-lined {
    white-space: normal;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
    height: auto;
}

/* ##### BTN BTN-DEFAULT ##### */
.btn.btn-default {background-color: #4D555B; color: #fff; border-color: #4D555B;}
.btn.btn-default:hover, .btn.btn-default.active, .btn.btn-default:focus {color: #fff; background-color: #6a757d; border-color: #6a757d; opacity: 1;}

/* ##### BTN BTN-SECONDARY ##### */
.btn.btn-secondary {background-color: #4D555B; color: #fff;}
.btn.btn-secondary:hover, .btn.btn-secondary.active, .btn.btn-secondary:focus {opacity: 0.8;}

/* ##### BTN SMALL ##### */
.btn.small {
    height: 30px;
    line-height: 28px;
    font-size: 14px;
}

/* ##### BTN SMALL2 ##### */
.btn.small2 {
    height: 20px;
    line-height: 18px;
    font-size: 11px;
}

/* ##### BTN-BACK ##### */
.btn-back {
    margin: -1px 10px 5px 0;
    padding: 0;
    width: 50px;
    font-size: 20px;
}

/* ##### BTN DISABLED ##### */
.btn.btn-disabled {
    color: #b6b5b5 !important;
    border-color: #b6b5b5 !important;
    font-weight: normal !important;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4) !important;
    background-color: #e8e8e8 !important;
    cursor: default !important;
    opacity: 1 !important;
}

@media all and (max-width: 479px) {
    .btn {padding: 0 7px;}
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {

    .btn {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        -o-user-select: none;
        user-select: none;
    }
}
