.custom-input {
    display: inline-block;
    height: calc(2.25rem + 2px);
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml; charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.custom-select {
	display: inline-block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem 1.75rem .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	vertical-align: middle;
	background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
	height: auto;
	padding-right: .75rem;
	background-image: none;
}

.custom-date {
    padding: .375rem .375rem .375rem .75rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: none;
}

.tooltip-inner {
    max-width: unset;
}

#logtable td:nth-child(-n+2), #logtable th:nth-child(-n+2) {
    white-space: nowrap;
    width: 10%;
}

#logtable .badge {
    font-size: 0.95em;
    padding: .4em .6em;
}

#orgtable td:nth-child(1), #orgtable td:nth-child(4) {
    width: 5%;
}

#orgtable td:nth-child(3), #orgtable td:nth-child(5) {
    white-space: nowrap;
    width: 15%;
}

#orgtable td:nth-child(2) {
    width: 90%;
}

#configtable td:nth-child(1) {
    white-space: nowrap;
    width: 90%;
}

#configtable td:nth-child(2) {
    white-space: nowrap;
    width: 10%;
}

.loader-horizontal {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  margin:15px auto;
  position: relative;
  color: #4197E7;
  box-sizing: border-box;
  animation: animloader-horizontal 2s linear infinite;
}

@keyframes animloader-horizontal {
  0% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
  }
  25% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 2px;
  }
  50% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 -2px,  -14px 0 0 2px,  -38px 0 0 -2px;
  }
  75% {
    box-shadow: 14px 0 0 2px,  38px 0 0 -2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
  }
  100% {
    box-shadow: 14px 0 0 -2px,  38px 0 0 2px,  -14px 0 0 -2px,  -38px 0 0 -2px;
  }
}