/* Minification failed. Returning unminified contents.
(352,35): run-time error CSS1046: Expect comma, found '0'
(352,39): run-time error CSS1046: Expect comma, found '/'
(463,18): run-time error CSS1030: Expected identifier, found ' '
(463,23): run-time error CSS1031: Expected selector, found ';'
(463,23): run-time error CSS1025: Expected comma or open brace, found ';'
(464,1): run-time error CSS1019: Unexpected token, found '}'
 */
/* common css */
* {
    margin: 0;
    padding: 0;
}

*,
:after,
:before {
    box-sizing: border-box;
}

html,
body {
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

html {
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Lato", sans-serif;
    color: #333;
    font-size: 14px;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    border: none;
    outline: none;
}

a {
    color: #1aa9f8;
    text-decoration: none;
    transition: all 0.3s;
}

    a:hover,
    a:focus {
        color: #2f86d4;
    }

p {
    margin-bottom: 20px;
    line-height: 1.7em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 300;
    line-height: 22px;
    color: #333;
    letter-spacing: -0.01em;
    margin: 0;
}

h1 {
    font-size: 3.857em;
    margin-bottom: 1.25em;
}

h2 {
    font-size: 21px;
    margin-bottom: 0.3em;
}

h3 {
    font-size: 1.929em;
    font-weight: 300;
    margin-bottom: 0.3em;
}

h4 {
    font-size: 1.5em;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 0.5em;
}

h5 {
    font-size: 1.143em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

label {
    display: block;
}

input,
select,
textarea,
button {
    outline: none;
}


    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        margin: 0;
    }

input,
select,
textarea {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    display: inline-block;
    border: solid #ccc 1px;
    margin: 0;
    padding: 12px 16px;
    border-radius: 3px;
    transition: all 0.3s;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    input:focus,
    select:focus {
        border-color: #2cace3;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 174, 239, 0.5);
    }

    input.valid,
    select.valid {
        border-color: #2cace3;
    }

    input.invalid,
    select.invalid {
        border-color: #ff4d07;
    }

        input.invalid:focus,
        select.invalid:focus {
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 77, 7, 0.5);
        }

    input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        margin: 0;
    }

    input[type=number] {
        -moz-appearance: textfield;
    }

    input::-ms-clear {
        display: none;
    }

select {
    background: url(../images/down-arrow.svg) right 15px center no-repeat #fff;
    background-size: 25px;
    padding-right: 60px;
}

    select::-ms-expand {
        display: none;
    }

button,
select,
a,
.cursor-pointer {
    cursor: pointer;
}

    button:focus {
        outline: none;
    }

.btn {
    display: inline-block;
    margin: 0;
    padding: 6px 12px;
    border: solid 1px transparent;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s;
}

    .btn:hover {
        color: #fff;
        text-decoration: none;
    }

.btn-green {
    background: #3ab16d;
    color: #fff;
}

    .btn-green:hover {
        background: #49d26d;
    }

.btn-blue {
    background: #272f3b;
}

    .btn-blue:hover {
        background: #3ab16d;
    }

.btn-gray {
    background: #f3f3f3;
    color: #272f3b;
}

    .btn-gray:hover {
        background: #3ab16d;
        color: #fff;
    }

.btn-red {
    background-color: #c3272e;
    color: #fff;
}

    .btn-red:hover {
        background-color: #f21513;
        color: #fff;
    }

.text-center {
    text-align: center;
}

.hide {
    display: none;
}

.vertical-super {
    vertical-align: super;
}

.text-xs {
    font-size: smaller;
}


/*scrollbar*/

.table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.scroll-bar::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background-color: #f5f5f5;
}

.scroll-bar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.scroll-bar::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #a0a0a0;
}

/*header*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    height: 66px;
    padding: 0 20px;
    border-top: 3px solid #c3272e;
    box-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

.logo {
    max-width: 130px;
    font-size: inherit;
    line-height: 0;
    display: inline-block;
    margin: 0;
    height: 50px;
    display: flex !important;
}

.cologo {
    float: right !important;
    margin-top: 5px;
    margin-right: 5px;
}

header h2 {
    margin: 0;
    font-weight: 600;
}

.wrapper {
    /*position: relative;
    background-color: #F9F9F9;
    border: solid 2px #fff;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    max-width: 940px;
    padding: 26px 26px 10px;
    margin: 40px auto;
    clear: both;*/
    position: relative;
    background-color: #F9F9F9;
    border: solid 2px #fff;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 20%);
    /* border-bottom-right-radius: 5px; */
    /* border-bottom-left-radius: 5px; */
    max-width: 940px;
    padding: 15px;
    margin: 68px auto !important;
    clear: both;
    border-radius: 5px !important;
    min-height: 333px;
}

/*panel section*/
.panel {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background-color: #272f3b;
}

    .panel-heading h4 {
        color: #fff;
    }

.panel-body {
    padding: 15px;
}

    .panel-body ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 18px;
    }

    .panel-body li {
        display: flex;
        align-items: baseline;
        width: 48%;
        padding: 6px 0 0px;
    }


        .panel-body li label {
            display: inline-block;
            background: #e0e4ee;
            width: 57%;
            padding: 8px 12px;
            margin-right: 12px;
            color: #000;
            font-size: 14px;
            font-weight: bold;
            word-break: break-word;
        }

        .panel-body li span {
            width: 65%;
        }

.large-mail-head {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.filelist {
    /*display: block;
    table-layout: fixed;*/
    border-spacing: 0;
    border: 1px solid #e6e6e6; /*S13-22*/
    width: 100%;
}

.download-file-list table thead {
    /*display: inline-block;*/ /*S13-22*/
    width: 100%;
    background: #efefef;
    border-top: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
}

.download-file-list table tbody {
    max-height: 105px;
    /*display: inline-block;*/ /*S13-22*/
    width: 100%;
    overflow: auto;
}

.filelist th, .filelist td {
    border-top: none;
    padding: 8px 12px;
    text-align: left;
    border: solid #e6e6e6; /*S13-22*/
    border-width: 1px 1px 0 0; /*S13-22*/
    width: 250px;
}

.filelist th {
    background-color: #efefef;
    border-bottom: none;
    border-top: none;
}


    .filelist th:last-child, td:last-child
    border-right: none;
}

.download-file-list table tr {
    display: flex;
}

/*S13-22*/
/*.filelist th:first-child, .filelist td:first-child {
    width: 100%;
}*/

.download-file-list {
    max-height: 150px;
    height: 100%;
    margin-bottom: 25px;
}

.download-files-link {
    padding-left: 26px;
    background: url('Images/download.svg') no-repeat;
    background-position: top -4px left 0;
    background-size: 26px;
    text-align: right;
}

.download-all-files {
    text-align: right;
}


.linkexpiry {
    color: #ac2329;
}

/*footer section*/
.footer-holder {
    position: relative;
    left: 0;
    bottom: 0;
    overflow: hidden;
    padding: 19px 0 3px;
    color: #999;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    background: #f9f9f9;
    width: 100%;
    /*box-shadow: 0 0 39px 0 rgb(0 0 0 / 17%);*/
}

.footer-inner-sec {
    margin: 0px auto;
    width: 80%;
}


.footer-holder p {
    margin: 0 0 10px;
    line-height: 1.7em;
}

    .footer-holder p a {
        color: #a00;
    }
/*Report Download footer*/
.branding-footer {
    font-size: 12px;
    padding: 10px 0;
    background-color: #111822;
    color: #797979;
    font-family: Lato,sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 5px !important;
}

    .branding-footer p {
        margin: 0 0 10px;
        line-height: 1.7em;
    }

        .branding-footer p a {
            color: #a00;
        }
/*modal popup*/

.modal {
    outline: none;
    position: absolute;
    margin-top: 0;
    top: 0;
    overflow: visible;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-processing {
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    overflow: visible !important;
    z-index: 1035 !important;
}

#processingText {
    color: #428bca;
    font-size: 18px;
}

.modal-processing .modal-dialog,
.modal-processing .modal-content {
    width: 280px;
    height: auto;
    margin: 0 auto;
}

.modal-processing .modal-content {
    box-shadow: 0 0 3px 0px #000;
    background: #fff;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
}

.modal-processing .modal-dialog {
    position: relative;
    top: 50%;
    margin-top: -48px;
}

.modal-body {
    padding: 20px;
}

.text-validation {
    font-size: 0.8em;
}

.panel-heading.confirmation-header {
    color: #2eba53;
    font-size: 1.2em;
    line-height: 16px;
}

.confirmation-header .text-success {
    margin-right: 6px;
}

.error-message {
    color: #c3272e !important;
    font-size: 16px;
    text-align: center;
}

.decryption-password {
    max-width: 360px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 35px rgba(16,30,54,.25) !important;
}

    .decryption-password b {
        display: block;
        margin-bottom: 8px;
    }

    .decryption-password span {
        display: block;
        margin-top: 2px;
    }

    .decryption-password input {
        width: 100%;
    }

.decryption-password-submit {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


    .decryption-password-submit .btn {
        max-width: 120px;
        width: 100%;
    }

/*forgot password popup*/
.bootbox-confirm .modal-dialog {
    position: relative;
    top: 50%;
    margin: -80px auto 0;
    background: #fff;
    max-width: 380px;
}

.bootbox-confirm .modal-content {
    padding: 20px;
    text-align: center;
}

.bootbox-confirm .modal-footer .btn-gray {
    margin-right: 10px;
}

.bootbox-confirm .bootbox-close-button {
    display: none;
}

.email-confirmation {
    margin: 80px auto;
    width: 430px;
    text-align: center;
}

.table-scroll thead {
    padding-right: 10px;
}


@media (max-width: 940px) {
    .wrapper {
        margin: 10px;
    }
    
    .panel-body li {
        display: block;
    }

        .panel-body li label {
            display: block;
            width: 100%;
            margin: 8px 0 5px;
        }

        .panel-body li span {
            padding-left: 12px;
        }
}


@media (max-width: 767px) {
    .wrapper {
        padding: 15px;
    }

    header h2 {
        font-size: 21px;
        line-height: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 100px;
    }

    .panel-body ul {
        display: block;
    }

    .panel-body li {
        width: 100%;
        padding-bottom: 8px;
    }

    header h2, .large-mail-head {
        font-size: 16px;
    }

    .decryption-password {
        padding: 20px;
    }

    .decryption-password-submit {
        display: block;
        text-align: center;
    }

        .decryption-password-submit .btn {
            max-width: 100%;
            margin-bottom: 5px;
        }

    .download-text {
        display: none;
    }

    .filelist th, .filelist td {
        padding: 8px;
    }

        .filelist td:last-child, .filelist th:last-child {
            text-align: center;
            max-width: 120px;
        }
}

img.tinyImage {
    width: 1px;
    height: 1px;
}

/*Begin S14-65*/
.filelist_FirstColumn {
    width: 50% !important;
}

/*End S14-65*/

/* Begin s13-9*/
.download-Loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: rgba(0,0,0,0.2);
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../Content/Images/Downloading.gif);
}
/* End s13-9*/
@media (min-width:1400px) {
    /*footer section*/
    .footer-holder {
        overflow: hidden;
        padding: 19px 0 3px;
        color: #999;
        font-size: 11px;
        line-height: 13px;
        text-align: center;
        background: #f9f9f9;
        bottom: 0;
        position:fixed;
        width: 100%;
        /*box-shadow: 0 0 39px 0 rgb(0 0 0 / 17%);*/
    }

    /*S1-3109*/
    .desktop-only {
        position: relative;
        left: 25%;
    }

    @media (max-width: 768px) {
        .desktop-only {
            position: static;
            left: auto;
        }
    }
    /*End S1-3109*/
}

h2.logo {
    max-width:42px !important;
}

@media (max-width: 767px) {

    .footer-holder {
        position:relative;
    }
    }

/*S1-3187*/

header {
    justify-content: inherit;
}

.icon1 {
    width: 200px;
}

    .icon1 img {
        width: 110px;
        border: none;
        outline: none;
    }

.HeaderText1 {
    width: calc(100% - 400px);
    text-align: center;
    font-weight: bold;
    font-size: 23px;
}

.large-font {
    font-size: 30px;
}

.small-font {
    font-size: 20px;
}

.logo1 {
    width: 200px;
}

    .logo1 img {
        max-height: 44px;
        max-width: 100%;
        position: relative;
        left: 140px;
    }
.icon1 img {
    height: 51px;
}

@media (max-width: 767px) {
    .heading {
        font-size: 20px;
    }

    .icon1 {
        width: 70px;
    }

    .HeaderText1 {
        width: calc(100% - 130px);
    }

    .logo1 {
        width: 50px;
    }

        .logo1 img {
            max-height: 34px;
            max-width: 33px;
            position: relative;
            left: 28px;
        }



    .HeaderText1 {
        font-size: 0em;
    }

    img {
        max-width: 110%;
    }
    .logo1 img {
        position: relative;
        right: 10px;
    }
}
/*End S1-3187*/

/*.wrapper {
    padding: 0 15px 15px 15px;
}*/
