/******************************************************************************/
/*overrides*/
/******************************************************************************/



/******************************************************************************/
/*add arrows to sortable tables*/
table.sortable th:not(.sortable-sorted):not(.sortable-sorted-reverse):not(.sortable-nosort):after{ 
    /*content: "\25B4\25BE";*/
}

form.form-inline, form.inline{
    display: inline !important;
}

.btn-default{
    font-size: 12px;
    line-height: 20px;
}

.btn-two-line{
    line-height: 10px;
}

.table-borderless tbody tr td, .table-borderless tbody tr th, .table-borderless thead tr th{
    border: none;
}

/******************************************************************************/
/*error handling*/
.error{
    background-color: #FFCCCC !important;
}

/******************************************************************************/
/*font size*/
.font-size-small{
    font-size: .75em;
}
.font-size-big{
    font-size: 2em;
}
.font-size-bigger{
    font-size: 4em;
}

/******************************************************************************/
/*float*/
.float-right{
    float: right;
}

.float-left{
    float: left;
}

.clear-left{
    clear: left;
}

.clear-right{
    clear: right;
}

.clear-both{
    clear: both;
}

/******************************************************************************/
.text-align-justify{
    text-align: justify;
}

.text-align-center{
    text-align: center;
}

.text-align-left{
    text-align: left;
}

.text-align-center{
    text-align: center;
}

.text-align-right{
    text-align: right;
}

/******************************************************************************/
.font-weight-bold{
    font-weight: bold;
}

.font-weight-bolder{
    font-weight: bolder;
}

/******************************************************************************/
.color-red {
  color: red;
}

/******************************************************************************/
/*display*/
.display-inline{
    display: inline;
}

.display-inline-block{
    display: inline-block;
}

.display-block{
    display: block;
}

/******************************************************************************/
/*margin*/
.margin-0{
    margin: 0 !important;
}

.margin-top-10{
    margin-top: 10px;
}

.margin-bottom-10{
    margin-bottom: 10px;
}

.margin-left-10{
    margin-left: 10px;
}

.margin-right-10{
    margin-right: 10px;
}

/******************************************************************************/
/*padding*/
.padding-0{
    padding: 0 !important;
}

.padding-top-10{
    padding-top: 10px;
}

.padding-bottom-10{
    padding-bottom: 10px;
}

.padding-left-10{
    padding-left: 10px;
}

.padding-right-10{
    padding-right: 10px;
}

/******************************************************************************/
/*pointer*/
.cursor-pointer{
    cursor: pointer;
}

/******************************************************************************/
/*hide content on desktop*/
@media only screen  and (min-width : 1200px) {
	.desktop-hide{
		display: none;
	}
}

/******************************************************************************/
/*hide content on mobile*/
@media only screen  and (max-width : 1200px) {
	.mobile-hide{
		display: none;
	}
}

/******************************************************************************/
/*adjust column gutters*/
[class^='col-']{
    padding-left: 0;
}

[class^='panel']{
    padding-right: 0;
}

.col-container{
    padding-left: 0;
    padding-right: 0;
}