body{
    direction: rtl;
}
.header_container{
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-top: 100px;
}


.header_title{
    font-family: vazirmatn;
    color: #313131;
}

.header_title h1{
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    line-height: 60px;

}

.header_title h2{
    font-size: 30px;
    font-weight: 800;
    /* font-style: italic; */
    text-transform: uppercase;
    text-align: center;
    line-height: 40px;
}

form{
    background-color: lightgray;
    padding: 10px;
    border-radius: 10px;
    margin-top: 50px;
}

.print_btn{
    background-color: rgb(34, 34, 34);
    color: #fff;
    font-size: 16px;
    font-family: vazirmatn;
    font-weight: 500px;
    width: 100px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 5px;
    /* margin-top: 30px; */
    cursor: pointer;
    margin: 5px;

}

.btn_container{
    display: flex;
    flex-flow: row nowrap;
    margin-top: 30px;
}


.show_order_area{
    /* background-color: wheat; */
    margin: 30px auto 0 auto;
    width: 28cm;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    
}

.order_info{
    width: 12.5cm;
    min-height: 5cm;
    border: 2px dotted #222;
    border-radius: 0.2cm;
    margin: 0.2cm;


    font-family: vazirmatn;
    color: #222;
    

    padding: 5px 15px;

    
}

.order_info>div{
    margin-top: 5px;
    margin-bottom: 5px;
}

.order_info span{
    font-weight: bold;
}






@media print {
    .header_container{
        display: none;
    }

    .order_info{
        break-inside: avoid;
        
    }
}