﻿@charset "utf-8";

/*
------------------------------------------------------------
Project Name : Sample Project;
------------------------------------------------------------
*/

/* Reset
--------------------------------------------------------------------------------------------------------*/

/*
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

nojs {
    color:black;
    Background: aqua;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* General
--------------------------------------------------------------------------------------------------------*/
* {
    outline: none !important;
}

    *, *::before, *::after {
        box-sizing: border-box !important;
    }

body:not(.page-loaded) {
    opacity: 0;
}

    .window-resizing *, body:not(.page-loaded) * {
        transition: none !important;
    }

a, .container, .logo img {
    transition: all 0.3s;
}

html, body {
    min-width: 320px;
    min-height: 100vh;
}

body {
    font: 14px/18px 'Open Sans',sans-serif,arial;
    -ms-overflow-style: scrollbar;
}

.wrapper {
    min-height: 100vh;
}
/*a{color:#000;text-decoration:none;}*/
a:hover {
    color: #999;
    text-decoration: none;
}
/*h1,h2,h3,h4,h5,h6{line-height:1.2em;padding:0 0 20px;}*/
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    display: block;
}

h1 {
    font-size: 22px;
    font-weight: 700;
}

h2 {
    font-size: 18px;
    font-weight: 700;
}

p {
    padding: 0 0 20px;
}

input[type=text], input[type=email], input[type=password], textarea {
    -webkit-appearance: none;
    appearance: none;
}

::-webkit-input-placeholder {
    color: #aaaaaa;
}

::-moz-placeholder {
    color: #aaaaaa;
}

:-ms-input-placeholder {
    color: #aaaaaa;
}

:-moz-placeholder {
    color: #aaaaaa;
}

::-moz-focus-inner {
    border: 0;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #aaaaaa;
}

option:not(:checked) {
    color: black;
}


/* Bootstrap Form Custom
--------------------------------------------------------------------------------------------------------*/
#imgPrimaryAttachmentInDetailPage:focus {
    border: 2px dashed #385877 !important;
}

a[data-toggle='collapse']:focus {
    border: 2px dashed #385887 !important;
    border-radius: inherit;
}

.btn {
    overflow: hidden;
    position: relative;
    min-width: 80px;
    border-radius: 4px !important;
    box-shadow: none !important;
    outline: none !important;
}

    .btn:focus {
        border: 2px groove #2A8395 !important;
        background-color: #2A8395 !important;
        box-shadow: inset 0 2px 2px rgba(0,0,0,.075), 0 0 8px #2A8395 !important;
    }

    .btn span {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        padding: 0px;
        margin: 0px;
        text-transform: capitalize;
        position: relative;
        z-index: 2;
        display: block;
        text-shadow: none !important;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .btn:after {
        content: "";
        background-color: rgba(0,0,0,0.25);
        position: absolute;
        bottom: 0px;
        left: 0;
        height: 0%;
        width: 100%;
        opacity: 0;
        transition: all 0.4s;
    }

    .btn:hover:after {
        height: 100%;
        opacity: 1;
        border-radius: 4px;
    }

.btn-sm {
    padding: 0px 10px;
    height: 25px;
}

    .btn-sm span {
        font-size: 14px;
    }

.btn-icon {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    padding-right: 15px;
    border: 1px solid #dddddd;
    background-color: #fff;
    display: block;
    padding: 0px;
}

    .btn-icon:focus {
        border: 1px double #385887 !important;
    }

    .btn-icon img {
        width: 34px;
        height: 34px;
        display: block;
        margin: auto;
    }

    .btn-icon:after {
        content: "";
        background-color: rgba(0,0,0,0.10);
        position: absolute;
        bottom: 50%;
        left: 50%;
        height: 0%;
        width: 0%;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.4s;
    }

    .btn-icon:hover:after {
        height: 100%;
        width: 100%;
        opacity: 1;
        left: 0;
        bottom: 0;
    }


.btn-primary:hover, .btn-primary {
    background-color: #385877 !important;
    border-color: #385877 !important;
}

.btn-secondary {
    background-color: transparent !important;
    border-color: #d6d6d6 !important;
}

    .btn-secondary span {
        color: #4f4f4f;
    }

    .btn-secondary:hover:after {
        background-color: #d6d6d6 !important;
    }

/*checkbox*/
.custom-control {
    font-size: 14px;
    color: #555555;
    padding-left: 28px;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.05);
}

.custom-checkbox .custom-control-label {
    line-height: 18px;
}

    .custom-checkbox .custom-control-label::after, .custom-checkbox .custom-control-label::before {
        cursor: pointer;
        width: 18px;
        height: 18px;
        border-radius: 0px;
        box-shadow: none !important;
        outline: none !important;
        background-size: 10px 10px;
        top: 0px;
        left: -28px;
    }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after, .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    border-color: #385877;
    background-color: #385877;
    border-radius: 0px;
}

.custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background-color: #385877;
    border-color: #385877;
    border-radius: 0px;
}

/*radio*/
.custom-radio .custom-control-label {
    line-height: 20px;
}

    .custom-radio .custom-control-label::after, .custom-radio .custom-control-label::before {
        cursor: pointer;
        top: 0;
        width: 18px;
        height: 18px;
        border-radius: 18px;
    }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #fff;
    border-color: #385877;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #385877;
    background-image: none;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background-color: #fff;
    border-color: #385877;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #385877;
}

.custom-radio .custom-control-label::after {
    top: 4px;
    left: -20px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        font-size: 18px;
        color: #555555;
        padding-bottom: 5px;
    }

.form-control {
    font-size: 14px;
    border-radius: 4px;
    border-color: #dedede !important;
    outline: none !important;
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: #505052 !important;
    }

    .form-control:disabled, .form-control[readonly] {
        background-color: #f2f2f2;
    }

textarea.form-control {
    min-height: 46px;
}

/* Bootstrap select */
.custom-select {
    background: url("../images/down-arrow.svg") no-repeat right 12px center/13px 7px;
}

/* Main Content
--------------------------------------------------------------------------------------------------------*/
.main-content {
    padding: 0 0 60px; /* Give padding bottom as footer height*/
}

.card {
    border: 0px;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
    padding: 0px;
    background-color: #fff;
    height: 100%;
}

.title-block h2 {
    color: #565656;
    padding-bottom: 0px;
}

/* login
--------------------------------------------------------------------------------------------------------*/
/*.login-block-outer {
  position: relative;
}

.login-background {
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  right: 380px;
}

  .login-background > img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100vh;
    height: auto;
    width: 100%;
  }

.login-block {
  width: 380px;
  padding: 40px 20px 55px;
  min-height: 100vh;
  position: relative;
  float: right;
}*/

.login-block .logo {
    display: inline-block;
    width: auto;
    padding: 0px;
    margin: 0 auto 40px;
}

    .login-block .logo img {
        max-height: 108px;
        min-height: 100%;
        width: 100%;
    }

.login-block .footer-logo {
    display: block;
    margin: 12px auto 0;
    max-height: 32px;
}

.login-block .forgot {
    color: #385877;
}

    .login-block .forgot:hover {
        color: #99a6b2;
    }

/*.login-block .btn {
    margin-bottom: 30px;
  }*/

.login-block .create-account {
    font-size: 14px;
    color: #555555;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 30px;
}

    .login-block .create-account a {
        color: #3866ab;
    }

        .login-block .create-account a:hover {
            color: #a6a6a6;
        }

/*  .login-block .copyright {
    color: #aaaaaa;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
  }*/

/* Footer

/* grid-table
--------------------------------------------------------------------------------------------------------*/
.grid-table.table-responsive {
    border: 0px;
    margin-bottom: 0px;
    border: 0;
}

.grid-table table {
    margin-bottom: 0px;
    min-width: 700px;
    border: 1px solid #385877;
}

    .grid-table table > thead > tr > th,
    .grid-table table > tbody > tr > th,
    .grid-table table > tfoot > tr > th,
    .grid-table table > thead > tr > td,
    .grid-table table > tbody > tr > td,
    .grid-table table > tfoot > tr > td {
        color: #555555;
        font-size: 14px;
        font-weight: 400;
        vertical-align: middle;
        font-family: 'Open Sans',sans-serif,arial;
        padding: 5px 10px;
        white-space: nowrap;
        height: 42px;
    }

    .grid-table table.table-bordered > thead > tr > th,
    .grid-table table.table-bordered > tbody > tr > th,
    .grid-table table.table-bordered > tfoot > tr > th,
    .grid-table table.table-bordered > thead > tr > td,
    .grid-table table.table-bordered > tbody > tr > td,
    .grid-table table.table-bordered > tfoot > tr > td {
        border: 1px solid #d2dae1;
        border-left: 0px;
        border-bottom: 0px;
    }

    .grid-table table.table-bordered {
        border-left: 1px solid #d2dae1;
        border-bottom: 1px solid #d2dae1;
    }

    .grid-table table .k-grid-header, .grid-table table .k-grid-header th {
        color: #fff;
        font-weight: 700;
        font-family: 'Open Sans',sans-serif,arial;
        background-image: none;
        background-color: #385877;
        white-space: nowrap;
        padding: 12px 10px;
        white-space: nowrap;
    }

.grid-table .table th.actions, .grid-table .table td.actions {
    white-space: nowrap;
}

.grid-table table tr {
    background: none;
}

/*.grid-table table a {
  color: #0595da;
}*/

.k-grid tr:hover {
    background-color: #ececec !important;
    background-image: none;
}

.grid-table .table .actions a {
    padding: 7px;
    margin: 0 2px;
    vertical-align: middle;
    border-radius: 32px;
    display: inline-block;
    padding: 6px;
}

    .grid-table .table .actions a img {
        width: 24px;
        height: 24px;
        display: block;
    }

.grid-table .table > tbody > tr > td a {
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 400;
}

    .grid-table .table > tbody > tr > td a:hover {
        color: #000;
    }

.grid-table .table .actions a:hover, .grid-table .table .actions a:focus {
    background-color: #eceef1;
}

.grid-table .table-hover > tbody > tr:hover {
    background-color: #f9f9f9;
}

.grid-table td.center, th.center {
    text-align: center;
}

.k-pager-wrap {
    background: none;
    border: none;
}

    .k-pager-wrap .k-pager-info {
        font-size: 14px;
        color: #757575
    }

    .k-pager-wrap .k-link {
        color: #555555;
    }

    .k-pager-wrap .k-link, .k-pager-wrap .k-state-selected {
        font-size: 14px;
        border-radius: 4px;
        border: 0;
    }

        .k-dropdown .k-state-focused, .k-filebrowser-dropzone, .k-list > .k-state-hover, .k-pager-wrap .k-link:hover, .k-scheduler .k-scheduler-toolbar ul li.k-state-hover, .k-splitbar-horizontal-hover, .k-splitbar-vertical-hover, .k-state-hover {
            background-color: #dedede;
        }

.k-draghandle.k-state-selected:hover, .k-ghost-splitbar-horizontal, .k-ghost-splitbar-vertical, .k-list > .k-state-highlight, .k-list > .k-state-selected, .k-marquee-color, .k-panel > .k-state-selected, .k-scheduler .k-scheduler-toolbar .k-state-selected, .k-scheduler .k-today.k-state-selected, .k-state-selected, .k-state-selected:link, .k-state-selected:visited, .k-tool.k-state-selected {
    background-color: #385877 !important;
    background-image: none;
}

.k-grid-header th.k-header > .k-link {
    color: #fff;
}



.k-treelist.grid-table table > thead > tr > th,
.k-treelist.grid-table table > tbody > tr > th,
.k-treelist.grid-table table > tfoot > tr > th,
.k-treelist.grid-table table > thead > tr > td,
.k-treelist.grid-table table > tbody > tr > td,
.k-treelist.grid-table table > tfoot > tr > td {
    border: 1px solid #d2dae1;
    border-left: 0px;
    border-top: 0px;
    border-bottom: 0px;
}

/* Accordion
--------------------------------------------------------------------------------------------------------*/
.accordion-block {
    margin-bottom: 1px;
    border: 1px solid #dddddd;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

    .accordion-block .card-header {
        padding: 0px;
        background-color: #385877;
        border-bottom: 0;
        border-radius: 0;
    }

        .accordion-block .card-header a {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            padding: 16px;
            display: block;
            background: url("../images/collaps-hied.svg") no-repeat right 12px center/24px 24px;
        }

            .accordion-block .card-header a.collapsed {
                background: url("../images/collaps-show.svg") no-repeat right 12px center/24px 24px;
            }



/* Footer
--------------------------------------------------------------------------------------------------------*/
/*.footer {
  border-top: 1px solid #dddddd;
  padding: 15px 15px;
  text-align: right;
  position: relative;
  min-height: 60px;
  margin-top: -40px;*/ /* Give Footer height to margin top */
/*}*/

.copyright {
    padding: 0;
    color: #a1a5a8;
    font-size: 13px;
    line-height: 14px;
}

/* Responsive Media Queries
--------------------------------------------------------------------------------------------------------*/
@media (max-width:767px) {
    /* login ---------------- */
    .login-background {
        display: none;
    }

    /*  .login-block {
    float: none !important;
    width: auto;
    padding: 30px 10px 55px;
  }*/

    .login-block .logo {
        margin-bottom: 45px;
    }
}

.radio-inline {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}

/*.moneyField {
  width: 80% !important;
}*/

.invalid-feedback {
    font-size: 90%;
}

@media (min-width: 992px) {
    .model-audit {
        max-width: 1000px;
    }

    #btnExportAuditData {
        margin: -0.2rem -45rem -1rem auto;
    }
}

@media (max-width: 991px) {
    #btnExportAuditData {
        margin: -0.2rem -14rem -1rem auto;
    }
}

.model-audit .grid-table table .k-grid-header th {
    padding: 12px 5px;
}

input:focus, select:focus, textarea:focus {
    /*background-color: #bbeafc !important;*/
    outline: 0 !important;
    -webkit-box-shadow: inset 0 2px 2px rgba(0,0,0,.075), 0 0 8px rgb(33, 150, 243) !important;
    box-shadow: inset 0 2px 2px rgba(0,0,0,.075), 0 0 8px rgb(33, 150, 243) !important;
}
