@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,700;1,400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  color: #fff;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #0f172a;
}

.card {
  width: calc(100% - 30px);
  max-width: 640px;
  position: relative;
  margin: 15px;
  padding: 20px;
  border: 1px solid #222f43;
  border-radius: 20px;
  background-color: #1b1b1b;
  color: #b9e0f2;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}
.card h2 {
  font-size: 2.4rem;
  font-weight: 700;
}
.card p {
  font-size: 1.2rem;
  margin: 0 0 16px;
}
.card .pulse {
  position: absolute;
  background: #0ea5ea;
  width: 14px;
  height: 14px;
  right: 31px;
  top: 35px;
  border-radius: 50%;
}
.card .pulse::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 0.1px solid #0ea5ea;
  transform-origin: center;
  opacity: 0.8;
  scale: 0;
  animation: pulse 3s linear infinite;
}

@keyframes pulse {
  70% {
    scale: 0;
    opacity: 0.8;
  }
  100% {
    scale: 3;
    opacity: 0;
  }
}
.card .chart-area {
  position: relative;
}

.card .chart-area .grid {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-image: repeating-linear-gradient(to right, transparent 0% 3%, #f9f9f9 3% 3.5%, transparent 3% 18.65%);
}

.card .chart-area .grid::after {
  content: "";
  position: inherit;
  z-index: 1;
  bottom: 0;
  width: inherit;
  height: 100%;
  background: linear-gradient(180deg, #1b1b1b, rgba(27, 27, 27, 0.9), #1b1b1b);
}

body .apexcharts-tooltip.apexcharts-theme-light {
  color: #e2dede;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  box-shadow: none;
  padding: 4px 4px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 0;
}

.apexcharts-tooltip-title,
.apexcharts-xaxistooltip-bottom.apexcharts-theme-light {
  display: none;
}