﻿
@font-face {
    font-family: 'Cairo-Regular';
    src: url('/fonts/Cairo-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'ReemKufiInk-Regular';
    src: url('/fonts/ReemKufiInk-Regular.ttf') format('truetype');
}

* {
    box-sizing: border-box;
    font-family: 'Cairo-Regular',serif;
    align-items: center;
    justify-content: center;
}

body {
    margin: 0;
    font-family: 'Cairo-Regular',serif;
    font-size: 16px;
    width: 100%;
    height: 100%;
    user-select:none;
}

header {
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 998;
}

.header-section1 {
    background: linear-gradient(180deg, #e28c01 0%, #000000 100%);
    height: .8em;
    width: 100%;
}

.header-section2 {
    background: white;
    height: 6em;
    width: 100%;
    /*            box-shadow: rgba(0, 0, 0, 0.56) 1px 3px 5px 1px;
*/
}

.section-parts {
    height: 100%;
    padding: 0 1em;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
    justify-content: center;
}

    .section-parts:nth-child(3) {
        width: 18em;
    }

.menu-img {
    margin-right: 3em;
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;
    background-size: cover;
    background-image: url('/imgs/menu.png');
}

    .menu-img:hover {
        background-image: url('/imgs/menu2.png');
    }

.logo-img {
    width: 25em;
}

.section-parts:nth-child(4), .section-parts:nth-child(5) {
    padding: 0 .5em;
}

.section-parts-btn {
    background: #e28c01;
    padding: .75em 1.5em;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.56) 1px 3px 5px 1px;
    cursor: pointer;
}

.sp-btn1 {
    border-radius: 1.5em 0;
    background: #33a2f5;
}

    .sp-btn1:hover {
        background: #215fa1
    }

.sp-btn2 {
    background: #222a35;
    border-radius: 0 1.5em;
}

    .sp-btn2:hover {
        background: #215fa1;
    }

.lang-img {
    width: 1.5em;
    height: 1.5em;
    background-image: url('/imgs/lang-icon.png');
    background-size: cover;
}

    .lang-img:hover {
        background-image: url('/imgs/lang-icon2.png');
    }

.lang-label {
    margin-right: .8em;
    font-weight: bold;
}

.section-parts:nth-child(6):hover {
    color: blue;
}

.flip-box {
    padding-left: .1em;
    padding-right: .1em;
    height: 3.1em;
    width: 25em;
    perspective: 70em;
}

.header-logo {
    width: 25em;
    margin: 0 auto 0;
}

@keyframes fliplogo {
    0% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(180deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transform-style: preserve-3d;
    animation: fliplogo 20s infinite alternate;
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    left: 0em;
}

.flip-box-back {
    margin-top: 0.3em;
    font-size: .8em;
    color: #000000;
    transform: rotateX(180deg);
}

.flip-box-label {
    font-size: 1.4em;
    color: #092235;
    font-weight: bold;
}

.header-section3 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.inbox-header-slider {
    height: 29em;
    width: 100%;
    transition: 1s;
}



    .inbox-header-slider img {
        width: 100%;
        height: 100%;
    }

        .inbox-header-slider img:first-child {
            animation: slideshow 12s cubic-bezier(.3,-0.3,.2,1.25) infinite;
        }

@keyframes slideshow {
    0%, 10%, 20%, 30%, 40% {
        margin-right: 0%;
    }

    50%, 60%, 70%, 80%, 90% {
        margin-right: -100%;
    }
}

.section-search {
    width: calc(100% - 5em);
    margin: auto;
    background: rgb(203 203 203);
    background: white;
    border-radius: 1em;
    box-shadow: rgba(0, 0, 0, 0.56) 1px 3px 5px 1px;
    transform: translateY(-.5em);
    user-select: none;
}

.section-search-header {
    height: 3.5em;
    width: 100%;
    border-radius: 1em 1em 0 0;
    text-align: center;
}

.search-header-part {
    margin-top: .15em;
    display: inline-flex;
    height: calc(100% - 0.30em);
    width: 33.0%;
    background: #222a35;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #33a2f5;
    visibility: hidden;
}

    .search-header-part:first-child {
        border-radius: 0 1em 0 0;
        visibility: visible;
    }

    .search-header-part:last-child {
        border-radius: 1em 0 0 0;
    }

.search-header-part-icon {
    height: 2em;
}

.search-header-part-label {
    margin-right: .5em;
}

.shp-hover {
    color: #ed4343;
    font-weight: bold;
    background: #33a2f5;
}

.search-content {
    background: white;
    border-radius: 0 0 1em 1em;
    white-space: nowrap;
    overflow: hidden;
}

.search-options {
    display: inline-block;
    vertical-align: top;
    font-size: .9em;
    padding: .5em;
}

    .search-options:first-child {
        padding-right: 1em;
    }

    .search-options:last-child {
        width: calc(100% - 10em);
        padding: 0em;
        white-space: nowrap;
    }

.search-option-btn {
    width: 7em;
    padding: 0.25em;
    margin-bottom: .65em;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    background: #215fa1;
    box-shadow: 0px 1px 4px 2px rgb(203 203 203);
}

    .search-option-btn:first-child {
        background: #33a2f5;
    }

        .search-option-btn:first-child:hover {
            background: #1768a5;
        }

    .search-option-btn:last-child {
        background: rgb(203 203 203);
        margin-bottom: 0.15em;
        visibility: hidden;
    }

    .search-option-btn:hover {
        background: rgba(0, 0, 0, 0.56)
    }

.txt-block {
    display: inline-block;
    vertical-align: top;
    height: 6em;
    font-size: 1.1em;
    padding: .5em .4em 0 0;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

    .txt-block:nth-child(1), .txt-block:nth-child(2) {
        width: calc(15% - 4px);
    }

    .txt-block:nth-child(3), .txt-block:nth-child(4) {
        width: calc(27.5% - 4px);
    }

    .txt-block:nth-child(5) {
        width: calc(15% - 4px);
    }

.block-lbl {
    margin-right: 0.3em;
}

.txt-block:hover {
    color: red;
}

input, select {
    outline: none;
    border: 1px solid transparent;
    border-bottom-color: #22303a;
    transition: .5s;
    border-radius: 2em;
    margin: unset;
    margin-top: .5em;
    padding-left: .5em;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
}

    input:focus, select:focus {
        border-bottom-color: #ff6a00;
        border-radius: 0;
        color: red;
    }

    input:hover, select:hover {
        border-bottom-color: #ff6a00;
    }

    select option {
        color: #571010;
        font-weight: bold;
    }

    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="time"]::-webkit-calendar-picker-indicator {
        background: transparent;
        bottom: 0;
        color: transparent;
        cursor: pointer;
        height: auto;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
    }
/*        input[type="date"]::-webkit-datetime-edit-day-field:focus,
input[type="date"]::-webkit-datetime-edit-month-field:focus,
input[type="date"]::-webkit-datetime-edit-year-field:focus {
    background-color: transparent;
    color: transparent;
    outline: none;
}*/
/*        .txtdate-ext-cal {
            transform: translate(1.4em);
            position: absolute;
            background: transparent;
            color: transparent;
        }*/

.modren-inputdate {
    display: inline-block;
    vertical-align: top;
    margin-top: 0.6em;
}

    .modren-inputdate:last-child {
        transform: translateX(6.5em);
    }

.txtdatetime {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

    .txtdatetime:last-child {
        transform: translateX(6.7em) translateY(2px);
    }

.txtdate-ext-lbl1, .txtdate-ext-lbl2 {
    background-image: url('../icons/dateico.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    padding: 0.8em;
    cursor: pointer;
}

.txtdate-ext-lbl2 {
    background-image: url('../icons/timeico.png');
}

.modren-inputdate input,
.modren-inputdate select {
    margin-top: unset;
    padding: unset;
    text-align: center;
    width: 6.5em;
}

.modren-inputdate select {
    width: 7em;
}

    .modren-inputdate select option:first-child {
        font-size: .8em;
    }

.submit-btn {
    font-size: 1.4em;
    width: 100%;
    margin: .3em;
    background: #222a35;
    color: white;
    text-align: center;
    height: 2.8em;
    padding-top: .4em;
    box-shadow: 1px 3px 8px 3px rgba(0, 0, 0, 0.56);
}

    .submit-btn:hover {
        background: #33a2f5;
    }

footer {
    background-image: url('../imgs/backgroundfooter.png');
    width: 100%;
    z-index: -1;
}

.footer1 {
    margin: 0px;
    padding: 0px;
    font-size: .9em;
    width: 100%;
    background-color: #222a35;
    color: white;
    opacity: .8;
    text-align: center;
}

.footer-header-label {
    font-size: 1.5em;
    font-weight: bold;
    color: #33a2f5;
    text-decoration: underline;
    text-underline-offset: .5em;
}

.footer1-sections, .footer1-sections2, .footer1-sections3 {
    text-align: right;
    width: 33%;
    padding: 2em 3em 2em 3em;
    display: inline-block;
    vertical-align: top;
}

.footer2 {
    text-align: center;
    font-size: 1em;
    width: 100%;
    height: 2em;
    background-color: #222a35;
    color: white;
}

.footer-sep {
    font-size: 1.7em;
    height: 1.5em;
}


.overlay {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.56);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.road {
    left: calc(50% - 10em);
    top: calc(50% - 4em);
    width: 20em;
    height: 4em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car {
    width: 12em;
    height: 4em;
    background-color: aqua;
    border-radius: 2em;
    background-image: url('/imgs/overlay.png');
    background-size: cover;
    background-repeat: no-repeat;
    animation: drive 1.5s ease-in-out alternate infinite;
}

@keyframes drive {
    0% {
        margin-left: -100%;
    }

    100% {
        margin-left: 100%;
    }
}

#form1 input {
    font-weight: unset;
}

.main-menu {
    position: absolute;
    width: 20%;
    background: #ffffff;
    top: 4.5em;
    right: 1.5em;
    box-shadow: 0 0 3px 1px #808080;
    z-index: 9999;
    padding: 2em;
    border-radius: 1em;
    transform: translateX(100%);
    transition: all 1s ease;
}

    .main-menu img {
        width: 100%;
    }

.menu-items {
    margin-top: 1em;
}

    .menu-items div {
        background: linear-gradient(to right, #e8e6e6, #808080);
        padding: .3em .7em;
        margin-bottom: .25em;
        border-radius: 3em 0 0 3em;
        font-weight: bold;
        color: #0d71dd;
        cursor: pointer;
        transition: 500ms;
        box-shadow: 0 0 3px 1px white;
        width: 85%;
    }

        .menu-items div:last-child {
            margin-bottom: unset;
        }

        .menu-items div:hover {
            width: 98%;
            padding-right: 1.4em;
            background: linear-gradient(to right, #808080, #0b1d30);
            color: white;
        }

.login-overlay {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.56);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.login-container {
    width: 30em;
    height: 27em;
    border-radius: 1em;
    background: #ffffff;
    padding: 1em;
    box-shadow: 0 1px 7px 2px black;
    user-select: none;
}

.login-pnl {
    text-align: center;
    height: 3em;
}

.login-pnl-item {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 4px);
    font-size: 1.1em;
    text-align: center;
    background: #0b1d30;
    color: white;
    cursor: pointer;
    margin: auto;
    padding: .5em 0;
}

    .login-pnl-item:first-child {
        border-radius: 0 .5em 0 0;
        background: #0d71dd;
    }

    .login-pnl-item:last-child {
        border-radius: .5em 0 0 0;
    }

.login-pnl-container {
    margin: auto;
    background: linear-gradient(#0b1d30, #0d71dd);
    width: calc(100% - 5px);
    height: calc(100% - 9em);
    border-radius: 0 0 .5em .5em;
    padding: .1em;
    padding-top: 0;
    display: none;
}

.login-sub-container {
    width: 100%;
    height: 100%;
    background: white;
    padding: 1em;
    border-radius: 0 0 .5em .5em;
}

.login-btn {
    float: left;
    width: calc(50% - 4px);
    height: 18%;
    margin: .5em auto 0;
    cursor: pointer;
    transition: 300ms;
    background: #3498db;
    color: white;
    text-align: center;
    border-radius: .5em;
    box-shadow: 0 0 6px 1px white;
    font-size: 1.3em;
}

    .login-btn:hover {
        background: #0d71dd;
    }

#loginpnl1 {
    display: block;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: .5em;
    direction: ltr;
}

    .code-inputs input {
        width: 2.5em;
        height: 2.5em;
        text-align: center;
        padding: unset;
        font-size: 1.4em;
        border: 2px solid #ccc;
        border-radius: .2em;
        font-family: Tahoma, sans-serif;
        transition: border-color 0.3s;
    }

        .code-inputs input:focus {
            border-color: #3498db;
            outline: none;
        }

.lth-block {
    display: inline-block;
    vertical-align: top;
    margin: .5em;
    font-size: .9em;
    font-weight: bold;
}

.login-type {
    border: 1px solid #e8e6e6;
    padding: 0.5em .4em;
    border-radius: .5em;
    display: block;
    text-align: center;
}

#logtype2 {
    display: none;
}

.login-inputs, .login-sendbtn {
    display: inline-block;
    vertical-align: top;
}

.login-inputs {
    margin: unset;
    width: 60%;
    padding: .2em;
    padding-left: .85em;
    direction: ltr;
    text-align: left;
}

.login-sendbtn {
    width: calc(40% - 8px);
    background: #27507c;
    color: white;
    text-align: center;
    font-size: 0.8em;
    height: 3em;
    cursor: pointer;
    padding-top: .5em;
}

    .login-sendbtn:hover {
        background: #0d71dd;
    }

#loginopt {
    display: none;
}

.login-mobile-group {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 4px);
}

    .login-mobile-group label {
        display: block;
        margin-right: .5em;
        width: 5em;
    }

    .login-mobile-group input {
        text-align: center;
        border: 1px solid #3498db;
        border-radius: 0;
    }

        .login-mobile-group input:focus {
            border-radius: 1em;
            border-color: red;
        }

.UserReg-group label {
    display: inline-block;
    vertical-align: top;
    text-align: right;
    width: 8em;
}

.UserReg-group input {
    width: calc(90% - 8.5em);
}

.UserReg-group input, .UserReg-password-col input {
    border: 1px solid #3498db;
    border-radius: 0;
    padding: 0 .5em;
    text-align: center;
}

    .UserReg-group input:focus {
        border-radius: 1em;
        border-color: red;
    }

.UserReg-password-row {
    margin-top: .5em;
}

.UserReg-password-col {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 4px);
}

    .UserReg-password-col label {
        display: block;
    }

.errer_item {
    display: block;
    color: white;
}

    .errer_item:before {
        content: " - ";
    }
