/*========================================
        MobarakShahrNews Design System
=========================================*/

:root{

    /* Colors */

    --primary:#1d3557;

    --primary-dark:#13263f;

    --accent:#d4af37;

    --accent-hover:#c89d1f;

    --white:#ffffff;

    --bg:#f6f7fb;

    --border:#e6e8ec;

    --text:#333333;

    --text-light:#666666;

    /* Font */

--font-family:'Vazirmatn',Tahoma,sans-serif;

    /* Radius */

    --radius-sm:8px;

    --radius:14px;

    --radius-lg:20px;

    /* Shadow */

    --shadow-sm:0 2px 8px rgba(0,0,0,.05);

    --shadow:0 10px 25px rgba(0,0,0,.08);

    --shadow-hover:0 18px 35px rgba(0,0,0,.12);

    /* Transition */

    --transition:.3s ease;

}

/*=========================================
        Global Font
==========================================*/

html{
    font-family:var(--font-family);
}

body{
    font-family:var(--font-family);
}

button,
input,
textarea,
select{
    font-family:inherit;
}