﻿* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto', sans-serif;
    font-size: 10pt;
    height: 100%;
    margin: 0;
    background-color: white;
}
/*Start Login Page*/
.wallpaper {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
}

.stretch {
    width: 100%;
    height: 100%;
}

.centerBox {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -150px;
    width: 400px;
    min-height: 300px;
    box-shadow: 2px 2px 4px grey;
    border-radius: 4px;
    background-color: whitesmoke;
    border: 10px solid white;
    text-align: center;
}

/*End Login Page*/
/*Layout Styles*/
.main {
    margin: 0 auto;
    max-width: 1005px;
    border: 1px solid #C1C1C1;
    min-height: 600px;
}

.col-g1 {
    width: 8.33333%
}

.col-g2 {
    width: 16.66666%
}

.col-g3 {
    width: 24.99999%
}

.col-g4 {
    width: 33.33333%
}

.col-g5 {
    width: 41.66666%
}

.col-g6 {
    width: 49.99999%
}

.col-g7 {
    width: 58.33333%
}

.col-g8 {
    width: 66.66666%
}

.col-g9 {
    width: 74.99999%
}

.col-g10 {
    width: 83.33333%
}

.col-g11 {
    width: 91.66666%
}

.col-g12 {
    width: 99.99999%
}

.col-10 {
    width: 10%;
}

.col-9 {
    width: 11.11%;
}

.col-8 {
    width: 12.5%;
}

.col-7 {
    width: 14.28%;
}

.col-6 {
    width: 16.66%;
}

.col-5 {
    width: 20%;
}

.col-4 {
    width: 25%;
}

.col-3, .col-13 {
    width: 33.33%;
}

.col-23 {
    width: 66.66%;
}

.col-2 {
    width: 50%;
}

.col-1 {
    width: 100%;
}

[class*="col-"] {
    min-height: 50px;
    vertical-align: top;
    padding: 5px;
    float: left;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}
/*End Layout*/
/*Form and Inputs*/
.myform {
    padding: 5px;
    margin: 0 auto;
    max-width: 1000px;
}

    .myform input, .myform select, .myform textarea {
        width: 100%;
    }

input[type=checkbox], input[type=radio] {
    height: 18px;
    width: 18px;
}

input, select, textarea {
    border: 1px solid #aaa;
    border-radius: 4px;
}

.focus {
    background-color: #ffffee;
    border: 2px solid #36B3FF;
    transition: all 200ms ease-out;
    box-shadow: 0 0 6px rgba(35, 173, 278, 1);
}

input, select {
    line-height: 28px;
    height: 28px;
}

textarea {
    line-height: 16px;
}

.money {
    text-align: right;
}

input:focus, select:focus, textarea:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='date'], input[type='time'] {
    position: relative;
}

::-webkit-datetime-edit, ::-webkit-clear-button, ::-webkit-calendar-picker-indicator {
    position: absolute;
}

::-webkit-clear-button {
    right: 1.54em;
}

::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

::-webkit-calendar-picker-indicator {
    right: 0;
    padding: .539em .34em;
}

label {
    font-size: 8pt;
    display: block;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 2px;
    text-align: left;
}
/*End Form and Inputs*/
/*Colors*/
.bg_color1, .bg_purple {
    background-color: #44206B;
    color: white;
}

.bg_color2, .bg_orange {
    background-color: #F17D30;
    color: white;
}

.bg_color3, .bg_pink {
    background-color: #E051B0;
    color: white;
}

.bg_color4, .bg_red_dull {
    background-color: #E8572E;
    color: white;
}

.bg_color5, .bg_green_dull {
    background-color: #51BCBA;
    color: white;
}

.bg_color6, .bg_purple_light {
    background-color: #8D73C1;
    color: white;
}

.bg_color7, .bg_green_light {
    background-color: #67D872;
    color: black;
}

.bg_color8, .bg_cyan {
    background-color: #4BC4FA;
    color: black;
}

.bg_color9, .bg_yellow {
    background-color: #FACF33;
    color: black;
}

.bg_color0, .bg_maroon {
    background-color: #7E2117;
    color: white;
}

.bg_red {
    background-color: red;
    color: white;
}

.bg_green {
    background-color: green;
    color: white;
}

.bg_blue {
    background-color: blue;
    color: white;
}
.bg_gray {
    background-color: #E8E8EC;
    color:black;
}

.red {
    color: red;
}
.green{
    color:green;
}
.blue{
    color: blue;
}
/*End Colors*/
/* Tables*/
table.dataTable thead {
    background-color: #36B3FF;
    color: white;
}

    table.dataTable thead th {
        text-align: left;
        font-weight: normal;
    }

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    table.tbl thead {
        background-color: #36B3FF;
        color: white;
    }

        table.tbl thead th {
            padding: 8px 4px;
            font-weight: normal;
            border-bottom: 1px solid #dee2e6;
            text-align: left;
        }

    table.tbl td {
        padding: 5px 3px;
        border-bottom: 1px solid #dee2e6;
    }

    table.tbl tbody tr:hover {
        background: #dee2e6;
    }

    table.tbl tr:nth-child(even) {
        background: #F9F9F9;
    }

    table.entry th {
        font-size: 10pt;
        text-align: right;
        font-weight: normal;
        padding-right: 10px;
        white-space: nowrap;
    }

    table.entry td {
    }

/* End Tables*/
/* Text and Headings*/
h1 {
    background-color: #007ACC;
    font-size: 14pt;
    color: white;
    text-align: left;
    padding: 10px;
    margin: 0 0 5px 0;
    font-weight: normal;
}

h2 {
    font-size: 16pt;
    padding: 15px;
    margin: 0 0 10px 0;
}

.f24 {
    font-size: 24pt;
}

.f20 {
    font-size: 20pt;
}

.f18 {
    font-size: 18pt;
}

.f16 {
    font-size: 16pt;
}

.f14 {
    font-size: 14pt;
}

.f12 {
    font-size: 12pt;
}

.f11 {
    font-size: 11pt;
}

.f10 {
    font-size: 10pt;
}

.f8 {
    font-size: 8pt;
}

details {
    padding: 5px;
    max-width: 1000px;
    margin: 0 auto;
}

summary {
    font-size: 14pt;
}

hr {
    border: 1px solid #dee2e6 !important;
    margin: 5px 10px;
    clear: both;
}

.rt {
    text-align: right !important;
}

.lt {
    text-align: left !important;
}

.cn {
    text-align: center !important;
}

.b {
    font-weight: bold !important;
}

.u {
    text-decoration: underline !important;
}

/* End Text and Headings*/

/*Animations*/
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/*End Animations*/
a:link i {
    padding: 0 3px;
}

.hide {
    display: none;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 99;
    opacity: 0.5;
    filter: alpha(opacity=5);
    -moz-opacity: 0.5;
    min-height: 100%;
    width: 100%;
}

.loading {
    font-size: 10pt;
    border: 5px solid #67CFF5;
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    background-color: White;
    z-index: 999;
}

pre, .pre {
    white-space: pre-wrap; /* Since CSS 2.1 */
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
}

.ur {
    direction: rtl;
    font-family: Nafees;
}

.popup {
    box-shadow: 0 0 20px rgb(35 173 255);
    width: 200px;
    height: 100px;
    display: none;
    position: fixed;
    background-color: White;
    z-index: 999;
}

#popframe {
    width: 100%;
    height: 100%;
    border: none;
}

#popmsg {
    height: 100px;
    text-align: center;
    display: none;
    font-size: 14pt;
}

    #popmsg table, #popmsg table tr {
        width: 100%;
        height: 100px;
    }

    #popmsg td {
        vertical-align: middle;
        height: 100px;
    }

#expboxclose {
    top: -16px;
    right: -16px;
    position: absolute;
    font-size: 32px;
    border-radius: 12px;
    cursor: pointer;
}

.je tr th:nth-child(1) {
    text-align: left;
}

.je tr th:nth-child(2), .je tr th:nth-child(3), .je tr td:nth-child(2), .je tr td:nth-child(3) {
    text-align: right;
}

.je tfoot th {
    font-weight: bold;
}

.summarybar {
    background-color: #007ACC;
    margin: 0 auto;
    display: table;
    line-height: 20pt;
}

    .summarybar a {
        height: 40px;
    }

.topnav.summarybar a:hover, .topnav.summarybar .dropdown:hover {
    background-color: #36B3FF;
}

.ajax__html_editor_extender_popupDiv {
    display: none;
}

span.select2-dropdown.select2-dropdown--below,
span.select2-dropdown.select2-dropdown--above {
    min-width: 250px !important;
}

@media screen and (max-width: 600px) {
    [class*="col-"] {
        width: 100%;
    }

    .mcol-2 {
        width: 50%;
    }

    .mcol-3 {
        width: 33.33%;
    }

    .mcol-4 {
        width: 25%;
    }

    .mcol-5 {
        width: 20%;
    }

    .no-mobile {
        display: none;
    }
}

@media print {
    .no-print {
        display: none !important;
    }

    input, textarea, select {
        border: none;
    }

    .page-break {
        display: block;
        page-break-before: always;
    }
}

.bb {
    cursor: pointer;
    color: blue;
}
