html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.w-49{
  width: 49% !important;
}

.w-48{
  width: 48% !important;
}
.w-30{
  width: 30% !important;
}
.m-per-1{
  margin: 0.5%;
}

/*img[alt~="KvPay"] {*/
/*  height: 66px !important;*/
/*  margin-top: -8px;*/
/*  margin-bottom: -8px;*/
/*}*/

.btnEnd{
  display: flex;
  justify-content: flex-end;
}


.bnkImg{
  object-fit: contain;
}
.vCentered{
  display: flex; !important;
  align-items: center !important;
}
.tCenter{
  text-align: center;
}

.border-left-gray-300{
  border-left-color: var(--bs-gray-300) !important;
}

.border-right-gray-300{
  border-right-color: var(--bs-gray-300) !important;
}

.m-l-10px{
  margin-left: 10px !important;
}

.loginLogo{
  margin-bottom: 50px;
  height: 180px;
}
.loginImg{
  max-width: 75% !important;
  max-height: 50% !important;
}


















.table:not(.collapsed) .dtr-control::before {
  display: none !important;
}

.whiteSemi{
    background-color: hsl(240deg 17.17% 18.27% / 50%) !important;
}

.area{
  width: 100%;
  height:100vh;
  display: contents;
}

.circles{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  animation: animate 25s linear infinite;
  bottom: -300px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 40px;
  height: 40px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 40px;
  height: 40px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 220px;
  height: 220px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 300px;
  height: 300px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 50px;
  height: 50px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 300px;
  height: 300px;
  animation-delay: 0s;
  animation-duration: 11s;
}

.hidden {
  display: none !important;
}

.cc-hover-card {
  border-radius: 10px;
  transition: opacity 0.2s;
  overflow: hidden;
}

.cc-poper[cc-data-bin="null"] {
  border-bottom: none;
  cursor: default;
}

.cc-poper[cc-data-bin]:not([cc-data-bin="null"]) {
  cursor: pointer;
  border-bottom: 2px dashed var(--bs-primary);
  text-decoration: none;
}



@keyframes animate {

  0%{
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100%{
    transform: translateY(-1500px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}