.dashboard-container {
  margin: 5px;
  border-radius: 10px;
}

.dashboard-inner-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 213px;
  /* justify-content: center; */
  gap: 1.5rem;
}

.dashboard-card {
  background: linear-gradient(90deg, #1CB5E0 0%, #000851 100%);
  box-shadow: 0 4px 14px hsl(355deg 25% 15% / 10%);
  padding: 15px;
  border-radius: 0.5rem;
  color: white;
  overflow: hidden;
  position: relative;
  min-height: 90px;
  min-width: 222px;
}

.dashboard-card-title {
  font-size: xx-large;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}

.dashboard-period {
  font-size: medium;
}

.dashboard-card-value {
  font-weight: bolder;
  font-size: xx-large;
  bottom: 0;
  line-height: 49px;
}

.dashboard-percentage {
  font-size: 33px;
  font-weight: 200;

}

.dashboard-card-title i {
  transition: 0.5s ease;
  position: absolute;
  right: 0;
  color: black;
  background: #fafafa;
  padding: 10px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card:hover i {
  transform: scale(1.2);
}