/* IranSans strict global font loader
   Put your licensed font at assets/fonts/IRANSans.woff2 for the best result.
   Fallback filenames are supported, but IRANSans.woff2 is preloaded by the admin panel.
*/
@font-face {
  font-family: 'IRANSans';
  src:
    local('IRANSans'),
    local('IRANSansWeb'),
    local('IRANSansX'),
    url('../fonts/IRANSans.woff2') format('woff2'),
    url('../fonts/IRANSansWeb.woff2') format('woff2'),
    url('../fonts/IRANSansX.woff2') format('woff2'),
    url('../fonts/IRANSans.woff') format('woff'),
    url('../fonts/IRANSans.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}
:root {
  --font-main: 'IRANSans', Tahoma, Arial, 'Segoe UI', sans-serif;
}
html,
body,
button,
input,
select,
textarea,
table,
pre,
code {
  font-family: var(--font-main) !important;
}
html.iransans-lock body {
  opacity: 0;
}
html.iransans-ready body {
  opacity: 1;
  transition: opacity .08s ease-out;
}
