.loading {
  display:none;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #629F4B;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

.loading.mini {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #629F4B;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.cbtr-table__no__results{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px;
}

.cbtr-table__no__results.loader {
    text-indent: -9999px;
}

.disabled_info_button{
  pointer-events: none;
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}