﻿@font-face {
    font-family: MyFontNormal;
    src: url(../fonts/NotoKufiArabic-Regular.ttf);
}

@font-face {
    font-family: MyFontBold;
    src: url(../fonts/NotoKufiArabic-Bold.ttf);
}

body {
    font-family: Tahoma;
    padding: 0px;
    margin: 0px;
}

.AlignLabel {
    text-align: left;
}

.MessageLabel {
    float: left;
}

.ProductNameEn {
    font-family: Arial !important;
    font-size: 12pt !important;
    font-weight: bold !important;
    color: #259f5a !important;
}

.ProductNameAr {
    font-family: MyFontBold !important;
    font-size: 12pt !important;
    color: #259f5a !important;
}

.BG1 {
    position: fixed;
    top: 41%;
    right: 0;
    left: 0;
    height: 50px;
    background-color: #86754d;
    z-index: 2;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.BG2 {
    position: fixed;
    top: 41%;
    right: 0;
    left: 0;
    bottom: 0px;
    background-color: #259f5a;
    z-index: 1;
}

.LoginAreaHeader {
    position: fixed;
    right: 0px;
    left: 0px;
    text-align: center;
    z-index: 3;
    top: 10px;
    direction: ltr;
}

    .LoginAreaHeader img {
        height: 125px;
        margin-bottom: 0px;
    }

    .LoginAreaHeader span {
        font-size: 16pt;
        font-family: 'Sakkal Majalla';
        color: #106434;
        font-weight: bold;
    }

.LoginAreaBody {
    position: fixed;
    height: unset;
    width: 300px;
    margin: 0 auto;
    right: 0;
    left: 0;
    top: 210px;
    text-align: center;
    border-radius: 0px;
    border: 0.75px solid #86754d;
    background: white;
    padding: 20px 10px;
    padding-top: 14px;
    font-size: 9pt;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 4;
}

.FullWidth {
    width: 100%;
}

.TextBoxDesign {
    font-family: Tahoma;
    font-size: 9pt;
    text-align: center;
    border: 0.75px solid gray;
    padding: 5px 0px;
    border-radius: 3px;
    background-color: rgb(247, 247, 247);
}

.DropDownListDesign {
    font-family: Tahoma;
    font-size: 9pt;
    text-align: center;
    border: 0.75px solid gray;
    padding: 5px 5px;
    border-radius: 3px;
    background-color: rgb(247, 247, 247);
    cursor: pointer;
}

.LoginButtonArea {
    padding: 15px 20px 5px 20px;
    text-align: right;
}

    .LoginButtonArea input {
        background-color: #86754d;
        color: white;
        border: 1px solid #756644;
        padding: 5px 15px;
        border-radius: 3px;
        cursor: pointer;
        transition: background 0.1s ease-in-out;
    }

        .LoginButtonArea input:hover {
            background-color: #756644;
        }

.LoginAreaFooter {
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: white;
    z-index: 5;
    text-align: center;
    font-size: 12pt;
    padding: 5px;
    background-color: rgb(0,101,111);
    color: white;
    font-family: 'Sakkal Majalla';
}

@media(max-width:640px) {
    .LoginAreaBody {
        width: 100%;
        padding: 15px 0px;
        height: unset;
        bottom: 0px;
        border-radius: 0px;
        top: 220px;
        border: none;
        box-shadow: none;
    }

    .LoginAreaHeader {
        top: 20px;
    }

        .LoginAreaHeader span {
            font-size: 15pt;
        }
}

@media (max-height: 500px) {
    .LoginAreaBody {
        position: inherit;
        width: 100%;
        padding: 15px 0px;
        height: unset;
        bottom: 0px;
        border-radius: 0px;
        margin-top: 20px;
    }

    .LoginAreaHeader {
        position: inherit;
        margin-top: 20px;
    }

    .LoginAreaFooter {
        position: inherit;
    }

    .BG1, .BG2 {
        visibility: hidden;
    }
}