/* VARIABLES */

:root {
  --blue: #227ef6;
  --yellow: #e6c229;
  --green: #18d01f;
  --red: #d92121;
}

/* RESETS */

body {
  font-family: Poppins;
  color: #414141;
}

small {
  font-size: 12px !important;
}

/* UTILITY CLASSES */

.va-sub {
  vertical-align: sub;
}

/* COLOR CLASSES */

.text-blue {
  color: var(--blue);
}
.text-red {
  color: var(--red);
}
.text-green {
  color: var(--green);
}

.bg-blue {
  background-color: var(--blue) !important;
  color: white !important;
}
.bg-red {
  background-color: var(--red) !important;
  color: white !important;
}
.bg-green {
  background-color: var(--green) !important;
  color: white !important;
}
.bg-yellow {
  background-color: var(--yellow) !important;
  color: white !important;
}

.gradient-bg {
  background: linear-gradient(45deg, #8d2ae2 0%, #1d82f7 100%);
  color: white !important;
}

/* ELEMENT CLASSES */

.round-btn {
  border-radius: 50px !important;
}

.page-title {
  font-weight: 500;
  font-size: 26px;
  color: rgba(0, 0, 0, 0.7);
}

.section-title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  color: #3e3e3e;
}

.desc-text {
  font-size: 14px;
}

.box-title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 16px;
}

.list-count,
.page-count {
  font-weight: normal;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}

.list-item-title {
  font-weight: normal;
  font-size: 16px;
  color: #5a5a5a;
}

.content-box {
  width: 100%;
  padding: 12px;
  background-color: white;
  border-radius: 8px;
}
.content-box.full-height {
  height: 90vh;
  overflow-y: auto;
  padding-bottom: 50px;
}
