.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-14 {
    margin-bottom: 14px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mt-3 {
    margin-top: 3px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-6 {
    margin-top: 6px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-14 {
    margin-top: 14px;
}

.pt-14 {
    padding-top: 14px;
}

.w-100 {
    width: 100%;
}

.max-w-220 {
    max-width: 220px;
}

.max-w-260 {
    max-width: 260px;
}

.max-w-760 {
    max-width: 760px;
}

.min-w-280 {
    min-width: 280px;
}

.flex-1 {
    flex: 1;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

.azpet-flex-center {
    display: flex;
    align-items: center;
}

.azpet-flex-start {
    display: flex;
    align-items: flex-start;
}

.azpet-flex-end {
    display: flex;
    align-items: flex-end;
}

.azpet-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.azpet-flex-wrap {
    flex-wrap: wrap;
}

.gap-6 {
    gap: 6px;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 12px;
}

.gap-14 {
    gap: 14px;
}

.gap-16 {
    gap: 16px;
}

.text-danger {
    color: var(--danger);
}

.text-left {
    text-align: left;
}

.plain-button {
    border: none;
    background: none;
    cursor: pointer;
}

.card-flat {
    box-shadow: none;
    border: 1px solid var(--azpet-inline-card-border);
}

.story-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #dbe4ef;
    margin-bottom: 10px;
}

.checkbox-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.checkbox-row-start {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.checkbox-nudge {
    margin-top: 3px;
}

.dashboard-premium-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}