/*# sourceMappingURL=custom.min.css.map */

.bg-login {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  background-color: #f3f3f9;
}
/*Circle Timer */

.base-timer {
  position: relative;
  width: 100px;
  height: 100px;
}

.circleTimer {
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

/* scaleX(1) = CLOCKWISE, scaleX(-1) = ANTI-CLOCKWISE */

.base-timer__svg {
  text-align: center;
  transform: scaleX(1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 7px;
  stroke: #fceeed;
}

.base-timer__path-remaining {
  stroke-width: 7px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__path-remaining.arc {
  color: #db2820;
}

.base-timer__label {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* circle Timer End */

/*Transcation Page Filter*/

.subTitle {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
/*Transcation Page Filter End*/

/*Password Check*/
.PasswordMessage {
  background: #fceeed;
  color: #000;

  clip: rect(auto, auto, 0, auto);
  position: absolute;

  padding: 10px;
  width: auto;
  transition-property: clip;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.PasswordMessage.active {
  background: #fceeed;
  color: #000;
  padding: 10px;
  z-index: 100;
  height: auto;
  width: auto;

  clip: rect(auto, auto, 10rem, auto);
  opacity: 1;
}
.PasswordMessage p {
  padding: 0px 20px;
  margin-bottom: 0px;
  font-size: 14px;
}
.PasswordMessage.active p {
  padding: 0px 20px;
  margin-bottom: 0px;
  font-size: 14px;
}
/* Add a green text color and a checkmark when the requirements are right */
.validPassword {
  color: green;
}

.validPassword:before {
  position: relative;
  left: -10px;
  font-family: Arial Unicode MS;
  content: "\2713";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalidPassword {
  color: red;
}

.invalidPassword:before {
  position: relative;
  left: -10px;
  font-family: Arial Unicode MS;
  content: "\2718";
}
/*Password Check End*/

/* Infinite Scroll Start*/

.loadingScroll {
  opacity: 0;
  display: flex;
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease-in;
}
.loadingScrollStatistics {
    display: flex;
    justify-content:center;
    position: relative;
    transition: opacity 0.3s ease-in;
}

.loadingScroll.show {
  opacity: 1;
}

.ballScroll {
  background-color: #777;
  border-radius: 50%;
  margin: 5px;
  height: 10px;
  width: 10px;
  animation: jump 0.5s ease-in infinite;
}

.ballScroll:nth-of-type(2) {
  animation-delay: 0.1s;
}

.ballScroll:nth-of-type(3) {
  animation-delay: 0.2s;
}

@keyframes jump {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Infinite Scroll End*/


/*response page*/

@import url("https://fonts.googleapis.com/css2?family=Khand:wght@500&display=swap");
.successDiv {
  height: 60vh;
  display: flex;
  font-size: 14px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: "Khand", sans-serif;
}

.wrapperAlert {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  border: thin solid #ddd;
}

.faIcon {
  width: 50px;
  height: 50px;
}

.successTopHalf {
  width: 100%;
  color: white;
  overflow: hidden;
  min-height: 250px;
  position: relative;
  padding: 40px 0;
  background: rgb(0, 0, 0);
  background: -webkit-linear-gradient(45deg, #019871, #a0ebcf);
}

.successTopHalf p {
  margin-bottom: 30px;
}

.successTopHalf h1 {
  font-size: 2.25rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-shadow: 0 2px rgba(128, 128, 128, 0.6);
}

/* unsuccess top half*/

.unSuccessTopHalf {
  width: 100%;
  color: white;
  overflow: hidden;
  min-height: 250px;
  position: relative;
  padding: 40px 0;
  background: rgb(0, 0, 0);
  background: -webkit-linear-gradient(45deg, #db2820, #e6544c);
}

.unSuccessTopHalf p {
  margin-bottom: 30px;
}

.unSuccessTopHalf h1 {
  font-size: 2.25rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-shadow: 0 2px rgba(128, 128, 128, 0.6);
}

/* unsuccess top half end*/

svg {
  fill: white;
}

.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  bottom: -160px;
  -webkit-animation: square 20s infinite;
  animation: square 20s infinite;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
  left: 10%;
}

.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
  animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
  left: 25%;
  animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-duration: 22s;
  background-color: rgba(white, 0.3);
}

.bg-bubbles li:nth-child(5) {
  left: 70%;
}

.bg-bubbles li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  animation-delay: 3s;
  background-color: rgba(white, 0.2);
}

.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  animation-delay: 15s;
  animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  animation-delay: 2s;
  animation-duration: 40s;
  background-color: rgba(white, 0.3);
}

.bg-bubbles li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  animation-delay: 11s;
}

@-webkit-keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-500px) rotate(600deg);
  }
}

@keyframes square {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-500px) rotate(600deg);
  }
}

.bottomHalf {
  align-items: center;
  padding: 35px;
}

.bottomHalf p {
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

a.buttonResponsePage {
  margin-bottom: 10px;
  border: none;
  color: white !important;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 18px;
  background-color: #db2820;
  text-shadow: 0 1px rgba(128, 128, 128, 0.75);
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-decoration: none;
}

.buttonResponsePage:hover {
  background-color: #e6544c;
}

/*response page end*/