* {
    font-family: "Poppins", sans-serif;
}

/* ======= font ====== */
h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

p {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.small-muted {
    font-size: 12px;
    color: #6c757d;
}

/* ===== colors ===== */
.bg-success-light {
    background: #E3F8EB;
}

.bg-warning-light {
    background: #ffeed3;
}

.bg-info-light {
    background: #DBEAFE;
}

.bg-danger-light {
    background: #FDE8E8;
}

.bg-secondary-light {
    background: #071B441A;
}

/* ===== icon helpers ===== */
.notify-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(infinity * 1px);
    position: relative
}

.notify-circle.notify-circle-sm {
    width: 40px;
    height: 40px;
}

.notify-circle > .notify-circle-icon {
    position: absolute;
    font-size: 2.5rem;
}

.notify-circle.notify-circle-sm > .notify-circle-icon {
    position: absolute;
    font-size: 1.2rem;
}

/* ===== card helpers ===== */
.lg-rounded-card-border {
    border-radius: 1.2em;
}

.card-orange {
    background: linear-gradient(
            to bottom,
            #ea9325 0%,
            #ea9325 70%,
            #f3a940 88%,
            #f3a940 100%
    );
}

/* ===== upload component ===== */
.drop-zone {
    border: 2px dashed #ced4da;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    background: #fafbfc;
}

.drop-zone.dragover {
    border-color: #0d6efd;
    background: #f0f6ff;
}

/* ===== btn helpers ===== */
.btn-white {
    background: #fff;
    border: 1px solid #000;
}

.btn-white:hover {
    background: #f4f4f4;
}

.btn-white-no-border {
    background: #fff;
    border: #fff;
}

.btn-white-no-border:hover {
    background: #f4f4f4;
}

.btn-rounded {
    border-radius: 1.2em;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ===== input helpers ===== */
.rounded-input {
    border-radius: 999px;
}

textarea.rounded-input {
    border-radius: 14px;
}

.tag{
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
}