/* for Page Load animation */

.wave {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #vfff;
}

.ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #6c5ce7;
  animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.ball:nth-child(2) {
  animation-delay: -0.2s;
}

.ball:nth-child(3) {
  animation-delay: -0.4s;
}

.ball:nth-child(4) {
  animation-delay: -0.6s;
}

.ball:nth-child(5) {
  animation-delay: -0.8s;
}

#loader {
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  z-index: 99999;
  background: rgb(245, 245, 248)
}

#loader p {
  text-align: center;
  color: rgb(3, 1, 1);

  font-size: 35px;
  padding: 0;
  margin: 0;
}


/*   Page Load animation css end here */


.modal-content {

  display: contents;
}

.col {
  position: relative;
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  border-radius: 0.9rem;

}

.table,
td {
  background-color: white;
  color: black;
  border-radius: 0.9rem;

}

th {
  text-align: left;

}

.table th,
.table td {
  padding: 0.2rem;
  font-size: 16px;
}

.table tbody tr th {
  color: #697792;
}



