﻿@font-face {
    font-family: UTBold;
    src: url('../fonts/GE SS Two Bold.ttf');
}

@font-face {
    font-family: 'UTLight';
    src: url('../fonts/GE_SS_Two_Light.ttf');
}


@font-face {
    font-family: 'BarcodeFont';
    src: url('../fonts/IDAutomationHC39M.ttf') format('truetype'), url('../fonts/IDAutomationHC39M_FREE.otf') format('opentype');
}

body {
    margin: auto;
    padding: 0px;
    
    direction: rtl;
    font-family: UTLight !important;
    overflow-x: hidden;
    text-align: center;
    border-style:none;
}

.main-content {
    width: 70%;
    /*max-width: 1000px;*/
    margin: auto;
    display: inline-block;
    vertical-align: top;
    /*border-right: 1px solid #C6AD0C;*/
    padding-right: 5px;
    text-align: center;
    min-height: 400px;
}

.site-title {
    /*display:inline-block;*/
    vertical-align: middle;
    text-align: center;
    /*width:70%;*/
    font-family: UTBold;
    font-size: 36px;
    /*border-bottom:5px solid #C6AD0C;
    border-radius:15px 15px 0px 0px ;*/
    /*border:2px solid #C6AD0C;
    border-radius:10px;*/
    padding: 1px;
    /*background-color:#115740;
    color:white;*/
}

.separate {
    
    margin: 0px;
}

.logo-content {
    display: block;
    width: 100%;
    /*height:140px;*/
    font-family: UTLight;
    /*background-image:url("../Images/tabuk_logo.png");*/
    background-repeat: no-repeat;
    background-position: center;
}

    .logo-content img {
        width: 80px;
    }

.Header-text {
    display: inline-block;
    font-family: UTBold;
    vertical-align: bottom;
    text-align: center;
    font-size: 24px;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
    overflow: unset !important;
}

    /* Hide the tooltip content by default */
    [data-tooltip]:before,
    [data-tooltip]:after {
        visibility: hidden;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        pointer-events: none;
        font-family: UTLight !important;
    }

    /* Position tooltip above the element */
    [data-tooltip]:before {
        position: absolute;
        bottom: 105%;
        left: 50%;
        margin-bottom: 5px;
        margin-left: -80px;
        padding: 7px;
        width: auto;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #000;
        background-color: hsla(0, 0%, 20%, 0.9);
        color: #fff;
        content: attr(data-tooltip);
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
    }

    /* Triangle hack to make tooltip look like a speech bubble */
    [data-tooltip]:after {
        position: absolute;
        bottom: 150%;
        left: 50%;
        margin-left: -5px;
        width: 0;
        border-top: 5px solid #000;
        border-top: 5px solid hsla(0, 0%, 20%, 0.9);
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        /*content: " ";*/
        font-size: 0;
        line-height: 0;
    }

    /* Show tooltip content on hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }

.Barcode-div {
    font-family: BarcodeFont;
    font-size: 18px;
}

header {
    text-align: center;
    padding: 10px;
}

    header img {
        height: 120px;
    }

menu {
    display: inline-block;
    margin: 0px;
    width: 100%;
    vertical-align: top;
    background-color: #115740;
    text-align: center;
    padding: 0px;
    border-bottom: 5px solid #C6AD0C;
}

    menu ul {
        margin: 0px;
        padding: 0px;
    }

        menu ul li {
            list-style: none;
            color: white;
            text-align: center;
            display: inline-block;
            margin: 0px;
            padding: 0px;
        }

            menu ul li a {
                text-decoration: none;
                color: white;
                display: inline-block;
                min-width: 100px;
                padding: 15px;
            }

                menu ul li a:hover {
                    background-color: #1a8562;
                }

footer {
    border-top: 5px solid #C6AD0C;
    background-color: #115740;
    bottom: 0px;
    /*position: fixed;*/
    width: 100%;
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 12px;
    margin-top: 50px;
}

/*.BoxItems {
    text-align: center;
    margin: 20px;
}*/

.BoxItem {
    border-radius: 50px 0px 50px 0px;
    background-color: red;
    display: inline-block;
    width: 200px;
    height: 200px;
    margin: 30px;
    text-align: center;
}

    .BoxItem a {
        text-decoration: none;
        color: white;
        border: none;
        font-family: UTLight;
    }

        .BoxItem a:hover {
            text-decoration: none;
            color: #115740;
            border: none;
            font-weight: bold;
        }

    .BoxItem .BoxItem-image {
        height: 140px;
        padding-top: 20px;
        background-color: #115740;
        border-radius: 50px 0px 0px 0px;
        border: 1px solid #115740;
        color: white;
    }

        .BoxItem .BoxItem-image:hover {
            background-color: #fbf6d8;
            color: #115740;
            cursor: pointer;
        }

    .BoxItem .BoxItem-text {
        height: 60px;
        position: relative;
        bottom: 0px;
        text-align: center;
        padding-top: 20px;
        background-color: #C6AD0C;
        border-radius: 0px 0px 50px 0px;
        border-top: 4px solid #115740;
    }

.fa {
    color: inherit;
    font-size: 80px !important;
}

    .fa:hover {
        color: inherit;
    }

.title {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    font-family: UTBold;
    font-size: 24px;
}

.description {
    /*width: 60%;*/
    margin: auto;
    text-align: justify;
    color: gray;
    font-family: UTLight;
    font-size: 14px;
    line-height: 24px;
}

.row {
    direction: rtl;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: right !important;
    }
}

fieldset {
    font-family: UTLight;
}

    fieldset legend {
        font-family: UTBold;
        padding-top: 20px;
    }

    fieldset input[type=text], textarea, select {
        width: 100%;
        border-radius: 3px;
        border: 1px solid gray;
    }

        fieldset input[type=text]:focus {
            box-shadow: 0px 0px 5px #C6AD0C;
        }

.field-row {
    padding-top: 10px;
}

.btn-rows {
    padding-top: 10px;
    margin-left:0px !important;
}

.btn-primary {
    background-color: #115740 !important;
}

    .btn-primary:hover {
        background-color: #C6AD0C !important;
    }

table {
    
    font-family: UTLight;
}

    table th {
        background-color: #115740;
        color: white;
        padding: 10px;
        text-align: center;
        border: 1px solid #C6AD0C;
        font-weight: normal;
        font-size: 12px;
    }

    table td {
        padding: 10px;
        text-align: right;
        border: 1px solid #115740;
    }

.fa-small {
    font-size: 14px !important;
}

.cell-number {
    font-family: 'Times New Roman';
}

.cell-1 {
    width: 8.33%;
}

.cell-2 {
    width: 16.66%;
}

.cell-3 {
    width: 25%;
}

.cell-4 {
    width: 33.33%;
}

.cell-5 {
    width: 41.66%;
}

label {
    display: inline !important;
    padding-right: 10px;
}

.agreement {
    font-size: 11px;
    color: red;
    line-height: 20px;
}

.required:after {
    content: '*';
    color: red;
    font-family: 'Times New Roman';
}


.full-page {
    position: absolute;
    height: 100%;
    right: 0px;
    left: 0px;
    bottom: 0px;
    top: 0px;
    margin-left:15px !important;
}

.vertical-menu {
    position: sticky;
    height: 100%;
    right: 0px;
    width: 100%;
    bottom: 0px;
    top: 0px;
}

    .vertical-menu menu {
        position: sticky;
        height: 100%;
        right: 0px;
        width: 100%;
        bottom: 0px;
        top: 0px;
        border-bottom: none;
        border-left: 5px solid #C6AD0C;
    }

        .vertical-menu menu ul li {
            display: block;
            text-align: right;
                    border-bottom: 1px solid #0e4634;
        }

            .vertical-menu menu ul li a {
                text-decoration: none;
                color: white;
                display: block;
                width: 100%;
                padding: 15px;
                padding-right: 50px;
            }
.selected-menu-item {
     background-color: #1a8562;
}

.counter {
    padding-left:30px;
    float:left;
    font-family:'Times New Roman';
    font-weight:bold;
}

select:disabled {
    background-color:rgba(239, 239, 239, 1);
}
.fixed {
    float:none !important;
    display:inline-block;
    margin:auto;
   
}
.color-white {
    color:white !important;
    padding-right:20px;
}