/*
  .fa:before, .fa:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*/

.cs-btn {
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding:  7px 14px;
    white-space: nowrap;
    overflow: visible;
    height: 34px;
    cursor: pointer;
    border-width: 0;
    font-size: 14px;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    text-shadow: none;
    margin-left: 2px;
    width:88px
}
.cs-btn {
    border: none !important;
}
.cs-btn i{
    margin-right: 3px;
    vertical-align: middle;
}
.cs-btn.default {
    color: #333333;
    text-shadow: none;
    background-color: #e5e5e5;
}
.cs-btn.default:hover,
.cs-btn.default:focus,
.cs-btn.default:active,
.cs-btn.default.active{
    color: #333333;
    background-color: #d8d8d8 !important;
    outline: none !important;
    cursor: hand;
}
.cs-btn.default[disabled],
.cs-btn.default.disabled {
    color: #acabab;
    background-color: #d8d8d8 !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}
/*  Red */
.cs-btn.red {
    color: white;
    text-shadow: none;
    background-color: #d84a38;
}
.cs-btn.red:hover,
.cs-btn.red:focus,
.cs-btn.red:active,
.cs-btn.red.active {
    background-color: #bb2413 !important;
    color: #fff !important;
    outline: none !important;
    cursor: hand;
}
.cs-btn.red[disabled],
.cs-btn.red.disabled {
    background-color: #bb2413 !important;
    color: #ccc !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}
/*  Blue */

.cs-btn.blue {
    color: white;
    text-shadow: none;
    background-color: #4d90fe;
}
.cs-btn.blue:hover,
.cs-btn.blue:focus,
.cs-btn.blue:active,
.cs-btn.blue.active {
    background-color: #0362fd !important;
    color: #fff !important;
    outline: none !important;
    cursor: hand;
}
.cs-btn.blue[disabled],
.cs-btn.blue.disabled {
    background-color: #0362fd !important;
    color: #ccc !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}
/*.cs-btn-group .cs-btn.blue.dropdown-toggle {*/
    /*background-color: #4d90fe !important;*/
/*}*/

/*  Green */
.cs-btn.green {
    color: white;
    text-shadow: none;
    background-color: #35aa47;
}
.cs-btn.green:hover,
.cs-btn.green:focus,
.cs-btn.green:active,
.cs-btn.green.active{
    background-color: #1d943b !important;
    color: #fff !important;
    outline: none !important;
    cursor: hand;
}
.cs-btn.green.disabled,
.cs-btn.green[disabled]{
    background-color: #1d943b !important;
    color: #ccc !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}
/*  Purple */
.cs-btn.purple {
    color: white;
    text-shadow: none;
    background-color: #852b99;
}
.cs-btn.purple:hover,
.cs-btn.purple:focus,
.cs-btn.purple:active,
.cs-btn.purple.active{
    background-color: #6d1b81 !important;
    color: #fff !important;
    outline: none !important;
    cursor: hand;
}
.cs-btn.purple.disabled,
.cs-btn.purple[disabled] {
    background-color: #6d1b81 !important;
    color: #ccc !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}


/*  Yellow */
.cs-btn.yellow {
    color: white;
    text-shadow: none;
    background-color: #ffb848;
}
.cs-btn.yellow:hover,
.cs-btn.yellow:focus,
.cs-btn.yellow:active,
.cs-btn.yellow.active{
    background-color: #eca22e !important;
    color: #fff !important;
    outline: none !important;
    cursor: hand;
}
.cs-btn.yellow.disabled,
.cs-btn.yellow[disabled] {
    background-color: #eca22e !important;
    color: #ccc !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}
/*  Black */
.cs-btn.dark {
    color: white;
    text-shadow: none;
    background-color: #555555;
}
.cs-btn.dark:hover,
.cs-btn.dark:focus,
.cs-btn.dark:active,
.cs-btn.dark.active{
    background-color: #222222 !important;
    color: #fff !important;
    outline: none !important;
    cursor:hand;
}
.cs-btn.dark.disabled,
.cs-btn.dark[disabled] {
    background-color: #222222 !important;
    color: #ccc !important;
    outline: none !important;
    text-decoration: line-through;
    cursor: not-allowed;
}