/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view td {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    /*margin-top: 5px;*/
    margin-top: 0;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

.not-set {
    color: #c55;
    font-style: italic;
}

form div.required label.control-label:after {
    content: " *";
    color: red;
}

#back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    color: #EEE;
    text-align: center;
    z-index: 1000;
    background-color: rgba(89, 95, 102, 0.7);
    display: block;
    opacity: 1;
    width: 40px;
    height: 40px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-transition-delay: 0s;
    transition: all 0.5s ease-in-out 0s;
}

.circle {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50%;
    border-radius: 50% !important;
}

#back-top i {
    font-size: 20px;
    line-height: 35px;
}

.table-responsive>.table>tbody>tr>td{
    vertical-align: middle;
}