@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --white-color: #ffffff;
  --black-color: #333333;
  --primary-color: #0A274B;

  --size: 160px;
  --stroke: 12;
  --track: #e5e7eb;
  /* light gray */
  --ring1: #FF9A01;
  --ring2: #FF9A01;
  --ring3: #05A4EC;
  --ring4: #05A4EC;
  /* amber-500 */
  --text: #111827;
  /* gray-900 */
}

body {
  background: linear-gradient(0deg, #0f2c4d, #0979ba);
  color: var(--white-color);
  font-family: "Plus Jakarta Sans", sans-serif;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  overflow: auto;
  position: relative;
  font-size: 16px !important;
  /* font-size: calc(.5 * (1.5vh + 1.1vw)) !important; */
  letter-spacing: 0.8px;
}

/* Common scrollbar style */
* {
  scrollbar-color: #0A274B transparent;
  /* Firefox */
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #0A274B;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}


.header {
  /* box-shadow: 0 0 0 100vmax #0A274B;
  clip-path: inset(0 -100vmax); */
  padding: 1em;
  background-color: var(--primary-color);
  width: 100%;
}

.navbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-layout {
  padding: 10px;
}

.logo-card {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1em;
}

.logo-card img {
  width: auto;
  height: 2em;
  object-fit: contain;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.card-header {
  font-size: 2.4em;
  font-weight: bold;
  padding-top: 2px;
  padding-bottom: 12px;
}

.info-box {
  background: #11162d;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: .5em;
  width: fit-content;
}

.info-box i {
  margin-right: 6px;
}

.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
}

.progress-circle svg {
  transform: rotate(-90deg);
}

.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4em;
  font-weight: 700;
  color: var(--black-color);
}

.section-title {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
  background-color: var(--primary-color);
  padding: .7em;
  color: var(--white-color);
}

.flag-box {
  background: #FFFFFF08;
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  font-size: 0.9em;
  border: 1px solid var(--white-color);
}

.flag-box img {
  width: 28px;
  margin-right: 8px;
}

.user-text {
  color: #bbb;
}


.body-section {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 85px);
}

.herald-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eficyent-img {
  width: auto;
  height: 12em;
  object-fit: contain;
}

.first-card {
  display: flex;
  /* align-items: center; */
  gap: 1.2em;
  margin-bottom: 1em;
}

.value-card {
  display: flex;
  gap: 1em;
}

.logo-card-title {
  font-size: 1.5em;
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.8;
}

.label-box {
  margin-bottom: 1em;
}

.special-card {
  background-color: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  color: var(--black-color);
}

.special-card p {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--black-color);
  line-height: 1.8;
}

.sm-padding {
  padding: 1em;
}



/* resposnsive screen */
@media (max-width: 1199.98px) {

  .first-card {
    flex-wrap: wrap;
  }

  .main-layout {
    padding: 1.5em;
  }

}

@media (max-width: 992px) {
  body {
    height: auto;
  }
}

@media (max-width: 768px) {
  .dashboard-card {
    margin-bottom: 20px;
  }

  .herald-img {
    height: 8em;
  }

  .eficyent-img {
    height: 8em;
  }
}

@media (max-width: 576px) {
  .first-card {
    justify-content: center;
  }

  .card-header {
    text-align: center;
  }

  .card-description {
    text-align: center;
  }

  .value-card {
    justify-content: center;
    padding-bottom: 10px;
  }

  .kyc-second-card {
    margin-top: 20px;
  }

  .custom-col-sm-only {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .custom-card-two {
    padding-top: 20px;
  }

  .value-card {
    flex-wrap: wrap;
  }

  .navbar-main {
    flex-wrap: wrap;
    gap: 15px;
  }



  .logo-card-title {
    font-size: 1.2em;
  }

  .logo-card img {
    display: none;
  }

  .flax-box-main {
    display: flex;
    justify-content: center;
    width: 100%;

  }

  .navbar-main {
    justify-content: center;
  }

}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1514px !important;
  }
}

.apexcharts-datalabel-value {
  font-size: 1.5em;
  font-weight: 600;
}

#loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* background: #fff; */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(15px);
}

.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #f9c201 transparent transparent transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #FF3D00 #FF3D00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

.loader::before {
  width: 32px;
  height: 32px;
  border-color: transparent #0176FF transparent transparent;
  animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.progress-ring {
  position: relative;
  width: var(--size);
  height: var(--size);
  display: inline-grid;
  place-items: center;
}

.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.progress-ring .track {
  stroke: var(--track);
}

.progress {
  stroke-linecap: round;
  transition: stroke-dasharray .5s ease;
}

.progress-ring .value {
  position: absolute;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.first-card-img {
  transform: scale(1.05);
  border-color: #fff9;
  width: 16em;
  overflow: hidden;
  background-color: #0a0f2c;
  border-radius: 12px;
  position: relative;
}

.first-card-img .icon {
  transform: translate(4px);
}

/* .first-card-img::before {
  animation: shine 5s ease-out infinite;
}

.first-card-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(115deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
} */

/* .first-card-img::before {
  content: "";
  width: 11em;
  height: 12em;
  position: absolute;
  float: right;
  border-radius: 5px;
  background: linear-gradient(120deg, #e5e5e5 30%, #f0f0f0 38%, #f0f0f0 40%, #e5e5e5 48%);
  background: linear-gradient(120deg, #e5e5e500 30%, #f0f0f000 38%, #f0f0f038 43%, #e5e5e500 48%);
  background-size: 200% 100%;
  background-position: 100% 0;
  animation: load89234 5s infinite;
}

@keyframes load89234 {
  100% {
    background-position: -90% 0%;
  }
} */