/*@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");*/

body {
  padding: 0;
  margin: 0;
}

/* 



.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.ant-spin-dot-spin {
  transform: rotate(45deg);
  animation: antRotate 1.2s infinite linear;
}

.ant-spin-dot i {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: #1890ff;
  transform: scale(0.75);
  display: block;
  position: absolute;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
  transform-origin: 50% 50%;
}

.ant-spin-dot i:nth-child(1) {
  left: 0;
  top: 0;
}

.ant-spin-dot i:nth-child(2) {
  right: 0;
  top: 0;
  animation-delay: 0.4s;
}

.ant-spin-dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}

.ant-spin-dot i:nth-child(4) {
  left: 0;
  bottom: 0;
  animation-delay: 1.2s;
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@keyframes antRotate {
  to {
    transform: rotate(405deg);
  }
} */


/*# sourceMappingURL=loader.css.map */


/* Welcome page CSS */

.welcomeheader {
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  /* identical to box height */
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: #001B71;

}

.welcomepara {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #5A77A6;
  margin-top: 16px;
  font-family: 'Roboto', sans-serif;
}

.welcomeimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 33px;
}

.loginbtn {
  background: #FFFFFF;
  border: 2px solid #5C83FC;
  border-radius: 38px;
  width: 14%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 50px;
  color: #5C83FC;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
}

.welcomesoon {
  font-weight: 600;
  font-size: 32px;
  margin-top: 48px;
  text-align: center;
  color: #001B71;
}

/* New Loader */

.loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: 100vh;

  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;

  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.site-logo {
  text-align: center;
  margin-bottom: 30px;
}

.site-logo img {
  width: 100%;
}

.loader-spin {
  text-align: center;
}

.loader_new {

  height: 30px;

  margin-left: 40px;

  aspect-ratio: .866;

  display: grid;

  background: conic-gradient(from -121deg at right, #0000, #2962ff 1deg 60deg, #0000 61deg);

  animation: l11-0 3s infinite;

  transform-origin: 33% 50%;

}

.loader_new:before,

.loader_new:after {

  content: "";

  grid-area: 1/1;

  background: conic-gradient(from -121deg at right, #0000, #04cee5 1deg 60deg, #0000 61deg);

  animation: inherit;

  animation-name: l11-1;

}

.loader_new:after {

  --s: 30px;

  background: conic-gradient(from -121deg at right, #0000, #2645af 1deg 60deg, #0000 61deg);

}

@keyframes l11-0 {

  0% {
    transform: translate(-30px) rotate(0) translate(0) rotate(0)
  }

  25% {
    transform: translate(30px) rotate(0) translate(0) rotate(0)
  }

  50% {
    transform: translate(30px) rotate(180deg) translate(0) rotate(0)
  }

  75% {
    transform: translate(30px) rotate(180deg) translate(60px) rotate(0)
  }

  100% {
    transform: translate(30px) rotate(180deg) translate(60px) rotate(180deg)
  }

}

@keyframes l11-1 {

  0%,
  25%,
  50%,
  75%,
  100% {
    transform: translate(0)
  }

  12.5%,
  62.5% {
    transform: translate(var(--s, 15px))
  }

}