html,
body {
    position: relative;
    width: 100%;
    min-height: 100%;
	margin: 0;
	padding: 0;
    font-size: 14px;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

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

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

.ui-page{
	position: relative;
}

footer{
	width: 100%;
	position: absolute;
	bottom: 0;
}

/* 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;
}

.box{
	display:inline-block;
	width:100%;
	height:auto;
	padding:8px 12px;
	font-size:13px;
	color:#555;
	background-color:#FFF !important;
	border:1px solid #d3d3d3;
	border-radius:2px;
	-moz-transition:all .2s linear 0,box-shadow .2s linear 0;
	-o-transition:all .2s linear 0,box-shadow .2s linear 0;
	transition:all .2s linear 0,box-shadow .2s linear 0;
	-webkit-box-shadow:none;
	box-shadow:none;
	overflow-y: auto;
}

.kv-checkbox-list .checkbox{
    padding: 0 10px;
}

li .checkbox{
    line-height: 20px !important;
    padding-left: 20px;
}

tr.filters td:last{
    text-align: center;
    vertical-align: top;
}

.overflow-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50000;
    background: rgba(255,255,255,0.5);
}

#gridviewSection {
    position: relative;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

#taskSelectActionBar {
    position:fixed; 
    bottom:0; 
    left:0; 
    background: #bdc3c7;
    width:100%; 
    z-index:10; 
    padding:10px;
}

/* https://codepen.io/mandelid/pen/kNBYLJ */
.runningTaskSpinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgb(148, 212, 255);
    border-radius: 50%;
    border-top-color: rgb(44, 104, 156);
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    position: relative;
    top: 5px;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}