@font-face {
    font-family: 'Vazir';
    src: url('/dashboard/assets/fonts/Vazir-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('/dashboard/assets/fonts/Vazir-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazir';
    src: url('/dashboard/assets/fonts/Vazir-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


:root{
    --white : #FFFFFF;
    --gray : #F8F9FA;
    --black : #292827;
    --green : #024F01;
    --lightGreen : #067508;
    --backGreen : #E3F6E3;
    --yellow : #ECBD00;
    --red : #CA1700;
    --stroke : #dcdcdc;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Vazir';
    font-weight: 600;
    line-height: 1.7em;
}
p, span, li, button, input, select, label{
    font-family: 'Vazir';
    font-weight: 500;
    line-height: 1.5em;
    font-size: 14px;
}
.form_input{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 40px;
    max-height: 40px;
    min-height: 40px;
    background-color: var(--white);
    border: 1px solid var(--stroke);
    border-radius: 6px;
    padding: 1% 2.5%;
}
.form_input:focus{
    outline: none;
}
.form_submit{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 40px;
    max-height: 40px;
    min-height: 40px;
    border-radius: 6px;
    background-color: var(--lightGreen);
    color: var(--white);
    border: none;
}
.form_submit:hover{
    background-color: var(--white);
    border: 1px solid var(--lightGreen);
    color: var(--lightGreen);
    cursor: pointer;
    transition: 0.3s ease-in;
}

/* creating global error dialouge */
.error_dialogue{
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    display: none;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
}
.error_dialogue.active{
    display: flex;
}

.error_holder{
    background-color: var(--white);
    border: 1px solid var(--yellow);
    border-radius: 6px;
    width: 40%;
    max-width: 40%;
    min-width: 40%;
    height: max-content;
    margin: auto auto;
    text-align: center;
    padding: 4%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    animation: zoom-in 0.35s ease-in
}
.error_icon{
    width: 20%;
    max-width: 20%;
    min-width: 20%;
}
.error_text_holder{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 20px;
}

header{
    display: none;
}

footer{
    display: none;
}

@media only screen and (max-width: 600px){
    .error_holder{
        width: 90%;
        max-width: 90%;
        min-width: 90%;
    }

    header, .responsive_header, footer, .footer_responsive_container{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        display: flex;
    }
    .responsive_header{
        flex-direction: row;
        height: max-content;
        align-items: center;
    }
    .header_emptySection{
        width: 76%;
        max-width: 76%;
        min-width: 76%;
    }

    .header_profile, .header_logo{
        width: 10%;
        max-width: 10%;
        min-width: 10%;
    }

    .responsive_profile, .logo_responsive_header{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    footer{
        border-top: 1px solid #dcdcdc;
        padding-top: 2%;
        position: fixed;
        bottom: 0;
        right: 0;
        background-color: var(--white);
        padding-right: 2%;
        padding-left: 2%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0 auto;
        padding-right: 10%;
    }
    .footer_responsive_container{
        height: max-content;
        flex-direction: row;
        column-gap: 8.5%;
        align-items: center;
        justify-content: flex-start;
    }
    .footer_responsive_container section{
        width: 13%;
        max-width: 13%;
        min-width: 13%;
        height: max-content;
        display: flex;
        flex-direction: column;
        row-gap: 5px;
        justify-content: center;
        text-align: center;
    }

    .footer_icon{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        margin: 0 auto;
    }
    
    a .footer_item{
        width: 25%;
        max-width: 25%;
        min-width: 25%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    a{
        color: var(--black);
    }
    
}