:root {
    --color_header: #f96d00;
    --color_menu: #d9dad7;
    --color_body: #ffffff;
    --color_footer: #393e46;
}
@font-face {
    font-family: IRANSansXFaNum;
    font-style: normal;
    font-weight: normal;
    src: url('https://digibase.ir/fonts/IRANSansXFaNum-Regular.woff') format('woff'),
        url('https://digibase.ir/fonts/IRANSansXFaNum-Regular.woff2') format('woff2'),
        url('https://digibase.ir/fonts/IRANSansXFaNum-Regular.ttf') format('truetype');		
}

@font-face {
    font-family: IRANSansXFaNum;
    font-style: normal;
    font-weight: bold;
    src: url('https://digibase.ir/fonts/IRANSansXFaNum-Bold.woff') format('woff'),
        url('https://digibase.ir/fonts/IRANSansXFaNum-Bold.woff2') format('woff2'),
        url('https://digibase.ir/fonts/IRANSansXFaNum-Bold.ttf') format('truetype');
}

.fontStyle {
    font-family: IRANSansXFaNum, Arial, Helvetica, sans-serif;
}

body {
    font-family: IRANSansXFaNum;
    text-align: justify;
    direction: rtl;
}

.header {
    background-color: var(--color_header);
    width: 100%;
    height: 100px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.header h1 {
    text-align: center;
    color: white;

}

.menu {
    background-color: var(--color_menu);
    width: 100%;
    height: 50px;
    position: relative;
    border-radius: 10px;
    margin-top: 5px;

    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.menu a {
    color: black;
    font-size: large;
    padding-right: 20px;
    text-decoration: none;
}

.footer {
    background-color: var(--color_footer);
    width: 100%;
    height: 150px;
    border-radius: 0px;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer address {
    color: white;
    text-align: right;
    padding-right: 20px;
}

.table {
    display: table;
    width: 100%;
    margin-top: 5px;
}

.row {
    display: table-row;
}

.row div {
    display: table-cell;
}

.row div.right {
    width: 20%;
    background-color: #f8f8f8;
    margin-top: 0;
}

.row div.right a {
    text-decoration: none;
}

.row div.left {
    width: 80%;
    background-color: white;
    text-align: center;
    position: absolute;
}

.order_body {
    background-color: white;
    width: 100%;
    border-radius: 0px;
    margin-top: 5px;
}

a:hover {
    color: var(--color_header);
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

.content {
    padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky+.content {
    padding-top: 102px;
}


table {
    table-layout: fixed;
    width: 100%;
}

th,
td {
    border: 3px solid #ffb677;
    border-radius: 10px;
    width: 16%;
    text-align: center;
}

.button {
    margin: 10px;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-family: IRANSansWeb;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #f09819;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    display: inline-block;
}

.button:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.button:active {
    transform: scale(0.95);
}

address{
    font-family: IRANSansXFaNum;
    text-align: justify;
    direction: rtl;
    font-style: normal;
}