.ps-widget {
    position: relative;
    float: left;
    
    display: inline-block;
    
    border-radius: 3px;
    
    border: 1px solid #255885;

    background: #337ab7;
    
    padding: 0 24px;

    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    
    cursor: pointer;
}
.ps-widget span, .ps-widget.ps-disabled small {
    font-family: Verdana, sans-serif;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    line-height: 31px;
}

.ps-widget.ps-disabled span {
    display:none;
}

.ps-widget:hover {
    background: #286090;
    background-color: #286090;
}

.ps-widget:before {
    content: "\e072";
    
    margin-right: 5px;
    
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;

    color:#fff;
}

.ps-widget.ps-disabled {
    cursor: default;
}

.ps-widget.ps-disabled:hover {
    background: #337ab7;
    background-color: #337ab7;
}

.ps-widget.ps-disabled:before {
    display: none;
}

.ps-widget.ps-disabled span {
    display: none;
}