﻿@media (max-width: 768px) {
    .btn-responsive {
        padding: 2px 4px;
        font-size: 80%;
        line-height: 1;
        border-radius: 3px;
    }

    .docstyle {
        height: 100px;
        margin-bottom: 5px;
    }
}

@media (min-width: 769px) {
    .btn-responsive {
        padding: 4px 9px;
        font-size: 90%;
        line-height: 1.2;
    }

    .docstyle {
        height: 136px;
        margin-bottom: 10px;
    }
}


.SpinnerDiv {
    position: fixed;
    width: auto;
    height: auto;
    padding: 20px;
    z-index: 2000;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -50px;
    background: rgba(0,0,0,.75);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.Spinner {
    width: 5rem;
    height: 5rem;
    border-width: 6px;
    border-top-color: lightblue;
    border-left-color: lightblue;
    animation: spinner 1s linear infinite;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
    margin: 5px;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#Spinner {
    margin: auto;
    width: 50px;
    height: 50px;
    border-width: 5px;
    border-style: solid;
    border-color: lightblue;
    border-radius: 50%;
    border-top-style: dashed;
    border-right-style: solid;
    border-left-style: none;
    border-left-color: transparent;
    border-bottom-color: transparent;
    -webkit-animation: rotate 1s linear infinite;
}

.disableoverlay {
    background-color: white;
    z-index: 99999;
    position: fixed;
    left: 0;
    top: 0;
    /*color: rgba(0, 0, 0, 0.8);*/
    opacity: 0.4;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    display: block;
}

.SpinnerText {
    color: lightblue;
    font-size: larger;
    display: block;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .xs-font {
        font-size: 9px;
    }

    .sm-font {
        font-size: 12px;
    }

    .text-left-xs {
        text-align: left;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 35px;
        height: 0;
        overflow: hidden;
    }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .text-right-sm {
        text-align: right;
    }
}

@media screen and (min-width: 768px) {
    .video-container {
        position: relative;
        padding-top: 35px;
        height: 0;
        overflow: hidden;
        width: 560px;
        height: 315px;
    }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 560px;
            height: 315px;
        }
}

.tablestyle {
    border-bottom: 2px solid #ddd;
}

/* Standard syntax */
@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

.fa-layers-counter {
    background-color: #ff253a;
    border-radius: 1em;
    color: #fff;
    height: 1em;
    line-height: 1;
    max-width: 5em;
    min-width: 1em;
    overflow: hidden;
    padding: .25em;
    right: 0;
    text-overflow: ellipsis;
    top: 0;
    -webkit-transform: scale(.25);
    transform: scale(.25);
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.fa {
    padding-right: 3px;
}

#banner {
    height: 60px;
    /*background: linear-gradient(#2c2c2c, white 50%, rgb(18, 91, 160));*/
    background: linear-gradient(white, rgb(18, 91, 160));
    border-radius: 10px;
    margin-top: 5px;
    vertical-align: central;
}

.bannertext {
    /*color: linear-gradient(rgb(18, 91, 160),white);*/
    margin-top: 5px;
    margin-left: 15px;
    font-weight: bold;
    font-style: italic;
    font-size: 2.25em;
    /*background: -webkit-linear-gradient(gray, #125ba0);*/
    /*background: -webkit-linear-gradient(black, yellow  );*/
    /*background: linear-gradient(white, rgb(18, 91, 160));*/
    /*background: linear-gradient(330deg,black, #2c2c2c 50%, #808080);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.squeeze-footer {
    margin-left: 3px !important;
    margin-right: 3px !important;
}

.modalProgressGreyBackground {
    background-color: #ffffff;
    filter: alpha(opacity=15); /* this is opacity */
    opacity: 0.15; /*no, THIS is opacity ;) */
    margin: auto;
    padding: 0;
    overflow: hidden;
    position: fixed;
    /*clip:rect(0px,60px,200px,0px);*/
}

.minheight {
    min-height: 300px !important;
}

.glyph-bordered {
    padding: 4px;
    background: #eee;
    border-radius: 3px 3px;
    border: 1px solid #ddd;
}

    .glyph-bordered:hover {
        background: #ddd;
    }

.fontmedium {
    font-size: medium;
}

.fontxlarger {
    font-size: x-large;
}

.fontlarger {
    font-size: larger;
}

.fontlarge {
    font-size: large;
}

.mingap {
    margin-bottom: 12px;
}

.minmargin {
    margin-bottom: 4px;
}

.morepadding {
    height: 250px;
}

.minmargin-right {
    margin-right: 4px;
}

.leftmarginless6 {
    margin-left: -6px !important;
}

.lesspad {
    padding: 0px !important;
}

.padleft {
    padding-left: 10px !important;
}

.padright {
    padding-right: 10px !important;
}

.lesspadded {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

/*.lessmargin {
    *margin-left: -15px;
    margin-right: -15px;
}*/

.leftmargin {
    margin-left: 4px;
}

.mousepointer {
    cursor: pointer;
}

.mousenormal {
    cursor: default;
}

body {
    /*padding-top: 50px;
    padding-bottom: 20px;
    background-color: rgb(228, 228, 228);*/
    /*font-size:16px;
    background-color:#eee;*/
    font-size: 14px;
    /*background-color:#f5f5f5;*/
}

.selectInput {
    background-color: Yellow;
    width: 100%;
    text-align: left;
}

.nopad {
    padding: unset;
}

.padLR > button {
    margin-left: 5px;
    margin-right: 5px;
}

.padLR10
{
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    /*padding-left: 15px;
    padding-right: 15px;*/
    background-color: white;
}
/*.container {
    background-color: white;
    max-width: 1132px;
    padding-left: 0;
    padding-right: 0;
}*/
/*.body-content {
    background-color: white;
    max-width: 1132px;
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists
   will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/
/*.btn-primary {
  color: #ffffff;
  background-color: #87ceeb;
  border-color: #357ebd;
}*/
.btn-secondary {
    margin-right: 3px;
    margin-left: auto;
    color: #ffffff;
    background-color: #87ceeb;
    border-color: #357ebd;
    padding: 3px;
    font-size: smaller;
}

.alignright {
    float: right;
}

.error {
    color: red;
}
/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

footer {
    background-color: #125b9f;
    text-align: right;
    font-size: 0.7em;
    color: White;
    padding: 4px;
}
/*background-image:url(../images/header_bg3.jpg); background-repeat:repeat-x;*/
.navbar {
    margin-bottom: 0px;
}

.navbar-nav:visited .navbar-nav:hover > li > a {
    color: white;
}

.navbar-text {
    float: left;
    margin-right: unset;
    margin-left: unset;
}

.navbar-brand {
    float: left;
    height: unset;
    padding: unset;
    padding-left: 5px;
    font-size: 14px;
    /*line-height: 20px;*/
}

/*.navbar-fixed-top {
    left: auto;
    right: auto;
    margin-right: auto;
    margin-left: auto;
    background-color:#125b9f;
    position: relative;
    width: 1132px;
    align-content: center;
}*/

.k-header {
    background-color: rgb(18, 91, 160);
}

.k-grid-header .k-link:link, .k-grid-header .k-link:visited, .k-grid-header .k-state-hover.k-nav-current .k-link, .k-grouping-header .k-link {
    color: white;
}

.k-pager-wrap {
    background-color: rgb(18,91,160);
    color: white;
}

.k-state-selected .k-button:active .k-pager-numbers .k-reset .k-state-selected.k-draghandle:hover {
    background-image: none, linear-gradient(rgba(255, 255, 255, 0.2) 0px, rgba(255, 255, 255, 0) 100%);
    background-color: darkgray;
    border-color: initial;
}

.k-state-selected, .k-state-selected:link, .k-state-selected:visited, .k-list > .k-state-selected, .k-list > .k-state-highlight, .k-panel > .k-state-selected, .k-ghost-splitbar-vertical, .k-ghost-splitbar-horizontal, .k-state-selected.k-draghandle:hover, .k-scheduler .k-scheduler-toolbar .k-state-selected, .k-scheduler .k-state-selected.k-today, .k-marquee-color {
    background-color: lightgrey;
    color: black;
}

.quotedesc {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    height: 22px;
    line-height: 22px;
    white-space: nowrap;
}

.control-label {
    white-space: nowrap;
    vertical-align: top;
}

.panel-heading-adding {
    background-color: lightsteelblue !important;
}
/*.row {
    margin-left: 0px;
    margin-right: 0px;
}*/
.fieldlabel {
    font-weight: bold;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.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,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 3px;
    padding-left: 3px;
}

.row {
    margin-right: -3px;
    margin-left: -3px;
}

#pdfbox {
    width: 700px;
    height: 400px;
    overflow: auto;
}
/*border: 5px solid #ccc;*/
/* Icon when the collapsible content is shown */
.cbtn:after {
    font-family: "Glyphicons Halflings";
    content: "\e114";
}

/* Icon when the collapsible content is hidden */
.cbtn.collapsed:after {
    content: "\e080";
}

.spacer {
    margin-top: 40px;
}

.awiGradient {
    /* background-image: linear-gradient(white, rgb(18, 91, 160)) !important; */
    color: black !important;
    background-color: lightblue;
}

.style1 {
    height: 23px;
}


/* classes for SearchDD Widget */
.autosenseshow {
    visibility: visible;
    position: absolute;
    border: 1px solid black;
    float: left;
    /*max-height: 100px;*/
    overflow: auto;
    background-color: White;
}

.mobileautosenseshow {
    visibility: visible;
    position: absolute;
    z-index: 200;
    width: 100%;
    left: 0px;
    /*top: 50%;*/
    /*height: 50px;*/
    right: 0%;
    border: 1px solid black;
    float: left;
    /*max-height: 100px;*/
    overflow: auto;
    background-color: White;
}

.autosensehide {
    visibility: hidden;
    position: absolute;
    border-style: none;
    float: left;
    max-height: 0px;
    overflow: hidden;
}

.autosensetipshow {
    visibility: visible;
    position: absolute;
    border: 1px solid black;
    float: left;
    max-height: 100px;
    overflow: hidden;
    background-color: White;
}

.autosensetiphide {
    visibility: hidden;
    position: absolute;
    border-style: none;
    float: left;
    max-height: 0px;
    overflow: hidden;
}

.autosenseitem {
    background: white;
}

    .autosenseitem:hover {
        background-color: Highlight;
        cursor: pointer;
    }

.editInput {
    height: 34px;
}

.type-danger .modal-header {
    color: #fff;
    background-color: #c9302c;
}

.type-warning .modal-header {
    color: #000;
    background-color: #ffd800;
}

.order-active {
    background-color: #e8e8e8 !important;
}

._css_nav_menu li {
    line-height: 18px;
    font-size: 10px;
}

._css_nav_menu ._menu_level_1 {
    background-image: url(../images/menu_itembg.jpg);
    background-repeat: no-repeat;
    color: white;
    letter-spacing: 1px;
}

    ._css_nav_menu ._menu_level_1 p {
        margin-left: 3px;
    }

    ._css_nav_menu ._menu_level_1 a {
        color: black;
    }

._css_nav_menu ._menu_level_2 {
    background-image: url(../images/menu_itembg.jpg);
    background-repeat: no-repeat;
    color: white;
    letter-spacing: 1px;
}

    ._css_nav_menu ._menu_level_2 p {
        display: block;
        color: black
    }

        ._css_nav_menu ._menu_level_2 p a {
            font-weight: bold;
        }

._css_nav_menu ._menu_level_3 {
    background-image: url(../images/menu_itembg.jpg);
    background-repeat: no-repeat;
    color: white;
    letter-spacing: 1px;
}

    ._css_nav_menu ._menu_level_3 p {
        display: block;
        color: black
    }

        ._css_nav_menu ._menu_level_3 p a {
            font-weight: normal;
        }

/*._css_nav_menu ._menu_level_4 {
}*/

._css_nav_menu ._menu_level_4 p {
    margin-left: 5px;
    color: Black;
}

._css_nav_menu ._menu_level_4 a {
    color: Black;
}

._css_nav_menu ul .spacer {
    background: none;
}

.navbar-wt {
    background-color: transparent;
    border-color: transparent;
    /*background-color: #222;
  border-color: #080808;*/
}

    .navbar-wt .navbar-brand {
        color: #9d9d9d;
    }

        .navbar-wt .navbar-brand:hover,
        .navbar-wt .navbar-brand:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-wt .navbar-text {
        color: #fff;
        /*color: #9d9d9d;*/
    }

    .navbar-wt .navbar-nav > li > a {
        color: #fff;
        /*color: #9d9d9d;*/
    }
        /*.navbar-wt .navbar-nav > li > a {
    color: white;
}*/
        .navbar-wt .navbar-nav > li > a:hover,
        .navbar-wt .navbar-nav > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-wt .navbar-nav > .active > a,
    .navbar-wt .navbar-nav > .active > a:hover,
    .navbar-wt .navbar-nav > .active > a:focus {
        color: #fff;
        /*background-color: #080808;*/
        background-color: #9aa2a9;
    }

    .navbar-wt .navbar-nav > .disabled > a,
    .navbar-wt .navbar-nav > .disabled > a:hover,
    .navbar-wt .navbar-nav > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }
    /*.navbar-wt .navbar-toggle {
  border-color: #333;
}*/
    .navbar-wt .navbar-toggle:hover,
    .navbar-wt .navbar-toggle:focus {
        background-color: #333;
    }

    .navbar-wt .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .navbar-wt .navbar-collapse,
    .navbar-wt .navbar-form {
        border-color: #101010;
    }

    .navbar-wt .navbar-nav > .open > a,
    .navbar-wt .navbar-nav > .open > a:hover,
    .navbar-wt .navbar-nav > .open > a:focus {
        color: #fff;
        /*background-color: #080808;*/
        background-color: #9aa2a9;
    }

    .navbar-wt .navbar-collapse, .navbar-wt .navbar-form {
        border-color: #101010;
        /*background-color: #565859;*/
        background-color: #286090;
        max-width: 100%;
    }

.navbar-header, .navbar-fixed-bottom {
    /*background-color: #565859;*/
    background-color: #286090;
}
/*a.btn.disabled, a.btn {
    pointer-events: none;
  cursor: not-allowed;
}

a.disabled {
    pointer-events: none;
  cursor: not-allowed;
}*/

input[type="decimal2places"].disabled {
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 767px) {
    .pull-right-xs {
        margin-top: 5px !important;
        float: right !important;
    }
}

.group-header {
    position: absolute;
    margin-left: 10px;
    margin-top: -10px;
    background: white;
    padding-left: 10px;
    padding-right: 10px;
}

.striped-divs > div:nth-of-type(odd) {
    background-color: lightgoldenrodyellow;
}

.striped-divs > div:nth-of-type(even) {
    background-color: none;
}

.striped-form > div:nth-of-type(odd) {
    background-color: lightgoldenrodyellow;
}

.form-control {
    font-size: 16px;
}

.btn > span:disabled {
    cursor: not-allowed;
}
/*.btn-white {
  color: white;
  background-color: #fff;
  border-color: #ccc;
}
.btn-white:focus,
.btn-white.focus {
  color: white;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-white:hover {
  color: white;
  background-color: #e6e6e6;
  border-color: #adadad;
}*/

.groupBox {
    padding: 1%;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px #ccd;
    border-radius: 10px;
    margin: 1%;
}

.margin10 {
    margin: 10px;
}

.margin20 {
    margin: 20px;
}

.bottom10 {
    margin-bottom: 10px;
}

.padding24 {
    padding: 24px;
    padding-right: 48px;
}

.padding18 {
    padding: 18px;
    padding-right: 36px;
}

.padding14 {
    padding: 14px;
    padding-right: 24px;
}

.paddingtop5 {
    padding-top: 5px;
}

.paddingtop10 {
    padding-top: 10px;
}

.padding10 {
    padding: 10px;
}

.backColorWhite {
    background-color: white;
}

.backColorGray {
    background-color: #f5f5f5;
}

.ColorWhite {
    color: white;
}

.ColorBlack {
    color: black;
}

.fontBold {
    font-weight: bold;
}

.text-wrap {
    white-space: normal;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Round {
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.SmallRnd {
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

.BigRnd {
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    border-radius: unset;
}

    .panel-heading .btn {
        padding-top: 1px;
        padding-bottom: 1px;
    }

.AddNew {
    padding: 10px 15px;
    background-color: unset;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

ul li a {
    width: 100%;
}

    ul li a.btn {
        text-align: left;
    }

.UnitDiv {
    cursor: pointer;
    width: 100%;
    background-color: cyan;
    display: table;
    margin-right: auto;
    margin-left: auto;
    padding: 3px;
    margin-top: 7px;
    border-radius: 4px;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.SelectDiv {
    cursor: pointer;
    width: 100%;
    background-color: #f5f5f5;
    display: table;
    margin-right: auto;
    margin-left: auto;
    padding: 3px;
    margin-top: 7px;
    border-radius: 4px;
    border: solid 1px;
    border-color: lightgrey;
}

.last-5:before {
    /*font-family: "Glyphicons Halflings";*/
    content: "\2464";
}


/* The Modal (background) */
.imgModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    margin-left: auto;
    margin-right: auto;
    /*left: auto;*/
    top: 50px;
    width: 100%; /* Full width */
    height: 90%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.imgmodal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#imgModalcaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.imgmodal-content, #imgModalcaption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.imgclose {
    position: absolute;
    top: 10px;
    right: 30px;
    color: #f1f1f1;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
}

    .imgclose:hover,
    .imgclose:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .imgmodal-content {
        width: 100%;
    }
}

.MarginBottom10 {
    margin-bottom: 10px;
}

.MarginBottom5 {
    margin-bottom: 5px;
}

.marginleft5 {
    margin-left: 5px;
}

.MarginTop10 {
    margin-top: 10px; 
}

.MarginTop5 {
    margin-top: 5px;
}


.text-center {
    text-align: center;
}

.waitcursor {
    cursor: wait !important;
}

.img-thumbnail-size {
    width: auto !important;
    height: 60px !important;
}
