/* custom css */
body{
  font-family: 'Ubuntu';
}

#MyTable{
  /*margin-left: -25px;*/
}

.form-group{
  margin-bottom: 3px;
}

.error{
  font-size: small;
  color: red;
  font-style: italic;
}

.livestamp{
  font-size: x-small;
  color: goldenrod;  
  font-style: italic;
}

.modal-header{
  border-bottom: none;
}

.modal-footer{
  background: #f4f4f4;
  border-top: 1px solid #f4f4f4;
}

.modal-loader { 
  --bs-modal-bg: #00000000 !important; 
}

#particles-js{
  width: 100%;
  height: 100%;
  
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: fixed;
  z-index: -10;
  
}

.dataTables_processing {
    background-color: #f4f4f4;
    border: 1px solid #2980b9;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    color: red;
    font-size: 13px;
    left: 50%;
    margin-left: 0;
    min-width: 125px;
    padding: 7px;
    position: fixed;
    text-align: center;
    top: 50%;
    vertical-align: middle;
    z-index: 9999;
}


#loadingoverlay {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.6);
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2980b9 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(359deg);
  }
}

