.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #05315d;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #05315d transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.col-md-12 {
	max-width: 100%;
}
#no_response {
	text-align: center;
}

.error-box {
	background-color: #ffd8d8;
  border: 1px solid #680000;
  color: #900;
	padding: 20px;
}

.table-responsive {
	overflow-x: auto;
	max-width: 100%
}

table.table-results {
	border: 1px solid #d0d0d0;
	width: 100%;
	max-width: 100%;
}

table.table-results thead {
	background-color: #05315d;
	color: white;
}

table.table-results thead tr:hover, table.table-results thead tr.active {
	background-color: #05315d;
}

table.table-results tr {
	border-bottom: 1px solid #d0d0d0;
}

table.table-results td {
	border-right: 1px solid #d0d0d0;
}

table.table-results td.label-td {
	font-weight: bold;
}

table.table-results thead tr.text-center th, table.table-results thead tr.text-center td {
	text-align: center;
}

table.table-results thead tr.subheading {
	background-color: #ccc;
	color: black;
}

table.table-results .smaller th {
	font-size: 11px;
}

table.table-results .smaller td {
	font-size: 12px;
}

table.table-results a {
	text-decoration: underline;
	color: #05315d;
}