@layer utilities {
  .content-auto {
    content-visibility: auto;
  }
}

.tempHidden {
  display: none !important;
}

.loader-box {
  position: absolute !important;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  background-color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 500;
}

.loader {
  position: relative;
  display: flex;
}

.loader:before,
.loader:after {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  margin: 0 5px;
  border-radius: 50%;
  color: #10b1a1;
  background: currentColor;
  box-shadow: 50px 0, -50px 0;
  animation: left 1s infinite ease-in-out;
}

.loader:after {
  color: rgb(86, 82, 201);
  animation: right 1.1s infinite ease-in-out;
}

@keyframes right {
  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(10px);
  }
}

@keyframes left {
  0%,
  100% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.copy-fields {
  position: relative;
}

.copy-fields::after {
  display: none;
  content: "copied ";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(0%, -50%);
  height: fit-content;
  width: fit-content;
  /* background-color: #454766; */
  padding: 5px 10px;
  color: white;
  border-radius: 5px;
  transition: all 0.2s linear;
}

.copy-fields.show::after {
  display: inline;
}

/*::::::::::::::::Fileds Loader:::::::::::::::::: */

.filed_loader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-block;
  border-top: 5px solid #6875f5;
  border-right: 2px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#filed_loader {
  display: none;
}

.copy-fields {
  position: relative !important;
}

.popover {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
}

.popover::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  height: 15px;
  width: 25px;
  background-color: rgb(154, 154, 154);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/*  */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #6366f1 #dfe9eb;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 7px;
  width: 7px;
}
*::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #dfe9eb;
}

*::-webkit-scrollbar-track:hover {
  background-color: #b8c0c2;
}

*::-webkit-scrollbar-track:active {
  background-color: #b8c0c2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #6366f1;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #5659d2;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #3e4097;
}

#password_action {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  height: 20px;
  width: 20px;
  cursor: pointer;
}
