@font-face {
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-Heavy.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-Bold.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-DemiBold.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-Medium.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-Regular.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-Light.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-UltraLight.woff2) format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url(../fonts/IRANSansXFaNum-Thin.woff2) format("woff2");
}

.absolute {
    position: absolute;
}

:root {
    --primary-dark: #e76c00;
    --primary-light: #ff8c1a66;
    --secondary-color: #ffc809;
    --accent-color: #ffffff;
    --green-light: #c1fdb4;
    --green: #1e6d0d;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --text-muted-light: #949494;
    --bg-light: #f8f9fa;
    --bg-lighter: #fdfdfd;
    --bg-real: #f1f1f1;
    --bg-muted: #ededed;
    --border-color: #e1e5eb;
    --border-light: #f1f3f4;
    --primary-10: #ffecd9;
    --primary-20: #ffd8b3;
    --primary-30: #ffc28a;
    --primary-40: #ffac61;
    --primary-50: #f97a00;
    --primary-60: #d66400;
    --primary-70: #b35700;
    --primary-80: #8f4600;
    --primary-90: #6b3500;

    --cl-primary: #f97a00;
    --cl-primary-faded: #f978006e;
    --cl-primary-faded-2: #f9780052;
    --cl-secondary: #954400;
    --cl-bg: #eeeeee;

    --ff-primary: IRANSans;

    --fs-xxs: 0.75rem;
    --fs-xs: 0.9rem;
    --fs-sm: 1rem;
    --fs-md: 1.15rem;
    --fs-lg: 1.4rem;

    --body-max-width: 1320px;
    --header-height: 60px;

    ---box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}


@media (max-width: 1000px) {
    :root {
        --fs-xs: 0.8rem;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-xs: 0.7rem;
        --fs-sm: 0.8rem;
        --fs-md: 1rem;
        --fs-lg: 1.2rem;
    }
}

@media (max-width: 500px) {
    :root {
        --fs-md: 1rem;
        /* --fs-lg: 1.4rem; */
    }
}

body {
    font-family: var(--ff-primary);
    min-height: 100dvh;
    background-color: #fafafa;
}

ul {
    margin: 0;
    padding: 0;
}

* {
    font-family: var(--ff-primary);
    padding: 0;
    margin: 0;
    box-sizing: border-box !important;
}

a {
    text-decoration: none;
    color: black;
    font-family: var(--ff-primary) !important;
}

ul {
    list-style: none;
}

/* FLEX */
.flex {
    display: flex;
}

.fs-xxs {
    font-size: var(--fs-xxs);
}

.fs-xs {
    font-size: var(--fs-xs) !important;
}

.fs-xxs {
    font-size: var(--fs-xxs) !important;
}

.fs-sm {
    font-size: var(--fs-sm) !important;
}

.fs-md {
    font-size: var(--fs-md) !important;
}

.fs-lg {
    font-size: var(--fs-lg) !important;
}

/* btn */
.btn-brand-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-50);
    --bs-btn-border-color: var(--primary-50);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-60);
    --bs-btn-hover-border-color: var(--primary-60);
    --bs-btn-focus-shadow-rgb: 249, 122, 0;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-60);
    --bs-btn-active-border-color: var(--primary-60);
}

.btn-brand-outline-primary {
    --bs-btn-color: var(--primary-50);
    --bs-btn-border-color: var(--primary-50);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-60);
    --bs-btn-hover-border-color: var(--primary-60);
    --bs-btn-focus-shadow-rgb: 249, 122, 0;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-60);
    --bs-btn-active-border-color: var(--primary-60);
}

/* text colors */
.text-brand-primary {
    color: var(--primary-50);
}

/* GAP */
.gap-xsm {
    gap: 0.2rem;
}

.gap-sm {
    gap: 0.5rem;
}

.mb {
    display: none;
}

@media (max-width: 768px) {
    .mb-hidden {
        display: none;
    }

    .mb {
        display: unset;
    }
}

.mr-auto {
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partial-more {
    display: flex;
    background-color: white;
    color: black;
    font-size: calc(var(--fs-sm) - 0.1rem);
    gap: 0.4rem;
    padding: 0.2rem 0.1rem;
    border-radius: 8px;
    padding-right: 0.4rem;
    align-items: center;
}

.partial-more-muted {
    background-color: #d9d9d9;
    color: black;
    font-weight: 500;
}

.partial-more svg {
    height: 20px;
    height: 20px;
}

.partial-more .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mt-auto {
    margin-top: auto;
}

.padding-sm {
    padding: 0.2rem;
}

.padding-md {
    padding: 0.4rem;
}

.border-gray {
    border: 1px solid #dee2e6;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.of-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

/* COLOR INIT */
.cl-primary {
    color: var(--cl-primary);
}

.cl-primary-bg {
    background-color: var(--cl-primary);
}

.fill-primary {
    fill: var(--cl-primary);
}

.stroke-primary {
    stroke: var(--cl-primary);
}

/* background */
.bg-brand-primary {
    background-color: var(--primary-50);
}

.bg-brand-primary-10 {
    background-color: var(--primary-10);
}


/* BORDER COLOR */
.border-brand-primary {
    border: 1px solid var(--primary-50);
}

.border-radius-sm {
    border-radius: 0.6rem;
}