/* common css */

* {
    margin: 0;
    padding: 0;
}

*,
:after,
:before {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    /* -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: 1.3em;
    color: #333;
    letter-spacing: -0.01em;
    margin: 0;
}

h1 {
    font-size: 3.857em;
    margin-bottom: 1.25em;
}

h2 {
    font-size: 2.3em;
    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 {
    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 {
    width: 100px;
    font-size: inherit;
    line-height: 0;
    display: inline-block;
    margin: 0;
}

.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;
    border-radius: 3px;
    min-height: 450px;
}


/*panel section*/

.panel {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 50%);
    margin: 15px;
}

.panel2 {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 50%);
    /* margin:20px 70px; */
}


/* .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: 100%;
            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 {
    overflow: hidden;
    padding: 50px 0 20px;
    color: #999;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
}

.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: #000;
    font-size: 16px;
    text-align: center;
}

.decryption-password {
    max-width: 360px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.31);
    border-radius: 4px;
}

.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: space-between;
}

.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: 500px;
    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: 24px;
    }
}

@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*/

.sidemenu {
    float: left
}

.sidemenu ul {
    float: left;
    text-align: center
}

.sidemenu ul li {
    float: left;
    width: 100%;
    text-decoration: none;
}

.sidemenu ul li a {
    width: 100%;
    background-color: #efefef;
    display: inline-block;
    margin: 8px 0px;
    padding: 6px 12px !important;
    border: solid 1px transparent;
    border-radius: 4px;
    color: #000;
    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;
}

.sidemenu ul li a:hover {
    float: left;
    color: #fff;
    background-color: #1e7e34;
    text-decoration: none;
}

.sidemenu_click {
    float: left;
    color: #fff !important;
    background-color: #1e7e34 !important;
    text-decoration: none;
}

.sidemenu ul li a.active {
    float: left;
    color: #fff;
    background-color: #3fd665;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    margin: 6px 0px;
}

.w25 {
    width: 25%;
    float: left;
    border: 1px solid #ff0000
}

.w75 {
    width: 75%;
    float: left;
    border: 1px solid #ff0000
}

.download-panel {
    margin: 10px 100px;
    padding: 50px 30px;
}

.download-large-receipt {
    min-height: 250px;
}

.download-large-receipt .row .leftp {
    text-align: left;
    border: 1px;
    display: block;
    padding: 10px 0px;
}

.download-large-receipt .row .rightp {
    text-align: left;
    border: 1px;
    font-weight: bold;
    display: block;
    padding: 10px 0px;
}

.download-large-receipt h5 {
    font-size: 14px;
    text-transform: initial;
}


/* 
.wrapper-receipt-authentication {
    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;
    border-radius: 3px;
    border:1px solid #ff0000;
} */


/* .wrapper-download-large-receipt{
    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;
    border-radius: 3px;
} */

.upins {
    border: 1px solid #cdcdcd;
    width: 100%;
    height: auto;
}

.upins p {
    line-height: 10px;
    color: rgb(12, 12, 12)
}

.content-holder {
    border: 1px solid #cdcdcd;
    line-height: 12px;
    font-size: 12px;
    margin: 10px;
    padding: 10px 0px;
}

.mt-5 {
    margin-top: 20px;
}

.panelhold {
    padding: 40px 70px;
    background-color: #F9F9F9;
    border: solid 2px #fff;
    box-shadow: 0px 0px 4px rgb(0 0 0 / 50%);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.ngx-file-drop__drop-zone {
    border: 0px !important;
    height: 30px !important;
}

.ngx-file-drop__content {
    height: 30px !important;
}

.btn-upload {
    background: #fff;
    color: #000;
    margin: 0px 10px;
    border: 1px solid #999;
}

.btn-upload:hover {
    background: #fff;
    color: #000;
    margin: 0px 10px;
}

@media only screen and (max-width: 768px) {

    /* .panelholdimg{} */
    .panelhold {
        padding: 0px 5px;
    }

    .sec-right {
        display: none;
    }

    .sec-middle {
        width: 100% !important;
    }
}

.loading-img-center {
    position: absolute;
    left: 46%;
    top: 28%;
    z-index: 9999;
    height: 77px;
    width: 77px;
}

@media only screen and (max-width: 1024px) {
    .download-panel {
        margin: 10px 20px;
        padding: 50px 30px;
    }
}

@media only screen and (max-width: 425px) {
    .img_upload {
        width: 80px
    }
}

/* Scroll bar CSS */
.divScroll::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 12px;
}

.divScroll::-webkit-scrollbar-corner {
    background-color: #e6e6e6;
}

.divScroll::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background-clip: content-box;
    _background-color: #bfbfbf;
    background-color: #A0A0A0;
}

.divScroll::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
}