:root {
    --z-card-radius: 8px;
    --z-card-line: #e7ecf4;
    --z-card-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
    --z-soft-shadow: 0 3px 4px rgba(15, 23, 42, 0.035);
    --z-heading: #181c32;
    --z-muted: #7e8299;
    --z-blue: #1b84ff;
    --z-green: #17b26a;
    --z-orange: #ff8a00;
    --z-purple: #7c3aed;
    --z-rose: #f1416c;
}

.z-card {
    border: 1px solid var(--z-card-line);
    border-radius: var(--z-card-radius);
    background: #fff;
    box-shadow: var(--z-soft-shadow);
}

.z-gradient-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: var(--z-card-radius);
    color: #fff;
    box-shadow: var(--z-card-shadow);
}

.z-gradient-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/metronic/patterns/grid.svg");
    background-position: center;
    background-size: 520px;
    opacity: 0.12;
}

.z-gradient-card::after {
    content: "";
    position: absolute;
    right: -48px;
    top: -48px;
    width: 146px;
    height: 146px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.z-gradient-card > * {
    position: relative;
    z-index: 1;
}

.z-gradient-blue {
    background: linear-gradient(135deg, #1b84ff, #6ea8ff);
}

.z-gradient-green {
    background: linear-gradient(135deg, #17b26a, #4ade80);
}

.z-gradient-orange {
    background: linear-gradient(135deg, #ff8a00, #ffb020);
}

.z-gradient-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.z-gradient-rose {
    background: linear-gradient(135deg, #f1416c, #ff6f91);
}

.z-icon-box {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px dashed rgba(255, 255, 255, 0.44);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.z-icon-box i {
    font-size: 28px;
}

.z-progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.z-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #fff;
}

.z-brand-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #fff;
}

.z-brand-icon img {
    display: block;
    width: 18px;
    height: 18px;
}

.z-action-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 24px;
    align-items: center;
}

.z-action-illustration {
    align-self: end;
    width: 180px;
    max-height: 180px;
    object-fit: contain;
}
