html,
body {
    height: 100%;
}

.logout{border: none;
    background: none;
    padding: 0px;}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
 

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

/* 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 th {
    white-space: nowrap;
}

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

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

/* used to be in custome-site.css*/

.navbar-light {background-color: #e3f2fd;}

.custom-column-right {
	float:right;
}

.custom-column-left {
	float: left;
}

.custom-width-full {
	clear: left;
	clear: right;
	width: 100%;
}
 
.section {
	padding: 1em;
    border-radius: .5em;
    border: solid 1px #f3f1f1;
    margin-bottom: 10px;
}

/*---------bar loading indicator-----------*/
 @keyframes loader-animation {
     0% {
         left: -100%;
     }
     49% {
         left: 100%;
     }
     50% {
         left: 100%;
     }
     100% {
         left: -100%;
     }
 }
 .bar-loader {
     height: 5px;
     width: 100%;
     overflow: hidden;
 }
 .bar-loader .bar {
     position: relative;
     height: 5px;
     width: 100%;
     background-color: dodgerblue;
     animation-name: loader-animation;
     animation-duration: 3s;
     animation-iteration-count: infinite;
     animation-timing-function: ease-in-out;
 }
 
/*---------vue filter-----------*/
.filter_button_flat{
	border:none;
	background-color: transparent;
}
.filter_button_with_border{
	border: solid 1px lightgray;
    background-color: transparent;
    border-radius: 4px;
    padding: 6px 12px;
}

/*fixes missalignment of items in select2 control*/
.select2-search--inline{
	width:0px;
}

/*hides the double scrolling in pages where Kartik's gridview is too wide*/
.grid-view .card {
    overflow: hidden;
}

.nav-item .nav-link.dropdown-toggle-split {
    padding-left: 0;
}

.widget-list .widget-item, .widget-list .grid-sizer {
    width: calc(50%);
    box-sizing: border-box;
}

.widget-list .widget-item.item-flex {
    display: flex;
}

.widget-list .widget-item.item-flex .card {
    width: 100%;
}

.widget-list .widget-item .row, .widget-list .widget-item .card {
    margin:6px;
}

.widget-list .item-full {
    width: 100% !important;
}