﻿@import url('/fonts/vazirmatn/misc/farsi-digits/vazirmatn-fd-font-face.css');

:root {
    --bg1: #EBF3F5;
    --bg2: #F2F6F6;
    --accent-gradient: linear-gradient(230deg, #4B97A4, #306C6A);
    --card: #ffffff;
    --accent: #4B97A4;
    /**/
    --muted: #6b7777;
    --text: #5e6768;
    --shadow: 0 8px 24px rgba(11, 43, 45, 0.06);
}

* {
    box-sizing: border-box;
    font-family: "Vazirmatn FD", Arial;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    max-height: 100vh;
    max-height: 100dvh;
}

a {
    text-decoration: none;
    color: initial;
}

.inpt {
    outline: none;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: #fefefe;
    color: var(--text);
    border: 2px solid #dfe7e9;
}

    .inpt option {
        background-color: #fff;
    }

.secloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    border: 3px solid rgba(11,43,45,0.08);
    width: 1.5em;
    height: 1.5em;
    min-width: 1em;
    min-height: 1em;
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: RotateAnime 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: auto;
}

@keyframes RotateAnime {
    0% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(405deg);
    }

    100% {
        transform: rotate(765deg);
    }
}
