/* 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:  Roboto, "Helvetica Neue", sans-serif;
    color: #333;
    font-size: 14px;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
} */

body {
    font-family: "Lato",sans-serif !important;
    color: #42474c !important;
    font-size: 14px !important;
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}

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;
}

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;
    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: 4px;
    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;  */
     margin:0px 160px;
     min-height: 356px;
}


.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: 10px 0 10px;
    color: #999 !important;
    font-size: 11px !important;
    line-height: 13px;
    text-align: center;
    margin-top:30px;
}

    .footer-holder p {
        margin: 0 0 10px;
        line-height: 1.7em;
    }

        .footer-holder p a {
            color: #a00 !important;
        }
    /*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;
}
.panel-left{width:16%;}
.panel-right{width:82%;}

.loading-img-center{
    position: absolute;
    left: 25%;
    top:25%;
    border:1px solid #49d26d;
    z-index: 9999;
    background-image: #e5e5e5;
    border-radius: 50% 70% 50% 70%;
}
.panel2 {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 50%);
     /* margin:20px 70px;  */
     margin:0px 160px;
     min-height: 356px;
}
.table td, .table th {
    padding: 1rem 0px 0.75rem 0 !important;
    vertical-align: top !important;
    border-top: 1px solid #dee2e6 !important;
}
.av-preloading-panel{
    width: 100%;
    /*height: 100%; */
    position: relative;
    background: #fff;
    z-index: 999;
}
.av-preloading{
    width: 141px;
    height: 141px;
    position: absolute;
    left: 45%;
    top: 40%;
    z-index: 999;
    margin-top:100px;
}

.top-margin{ 
    /* margin-top:125px; */
    padding-top: 125px;
}
.filefix{word-break: break-all;}
.download-large-receipt .body-title {
    font-weight: 600;
    font-size: 16px;
}
@media (max-width: 1326.99px) {
    .panel-left{width:18%;}
    .panel-right{width:80%;}
    
    }
    
    @media only screen and (max-width: 1024px) {
        .panel2 {
            background-color: #fff;
            border-radius: 3px;
            box-shadow: 0px 0px 3px rgb(0 0 0 / 50%);
             /* margin:20px 70px;  */
             margin:0px 40px;
             min-height: 356px;
        }
        
        }
@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;
        }
}





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(../Images/Downloading.gif);
}
/* End s13-9*/

.sidemenu{float:left; margin-bottom: 20px;}
.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: 14px;
    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:#3ab16d;359e6d text-decoration: none;}
.sidemenu_click{float:left; color:#fff !important; background-color: #3ab16d!important; text-decoration: none;}
.sidemenu ul li a.active{float:left; color:#fff; background-color:#3ab16d;}
.nav-link {
    display: block;
    padding: .5rem 1rem;
    margin: 6px 0px ;
}
.w25{width: 25%; float: left; }
.w75{width: 75%; float: left;}
.download-panel{ 
    margin: 0px auto;
    padding: 15px;
    max-width: 500px;
    text-align: center;
    min-height: 340px;
}
.download-large-receipt{min-height:250px;  padding: 30px 30px 10px 30px;}
.download-large-receipt .row .leftp{text-align: left; border:1px; display: block; padding: 10px 0px;font-weight: bold;}
.download-large-receipt .row .rightp{text-align: left; border:1px; font-weight: 500;display: block;padding: 10px 0px;}
.download-large-receipt h5{font-size: 14px; text-transform:initial;} 
/* To set the body title */
.download-large-receipt .body-title
{
    font-weight: 600; 
    font-size: 16px;
    line-height: 18px;
}

/* 
.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;
} */
.upload-instructions{padding: 15px; border-radius: 4px;}
.upload-instructions hr{color:red; margin: 5px;}

.subheade-title{font-size: 16px !important;font-weight:600 !important;}
.upload-instructions .row p{line-height: 18px; color:#333; font-size:13px; margin:0px 0px 4px 0px;  }

.content-holder{border:1px solid #cdcdcd; line-height:12px; font-size:12px; margin: 10px; padding: 10px 0px;}
.mt-5{margin-top: 20px;}
.panelhold{ padding:55px 0px 0px 0px;  
    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;
    min-height: 550px;
}
.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;}
.panelholdimg{
    font-family: inherit !important;
    font-weight: 600 !important;
    line-height: 1.3em !important;
    color: #333 !important;
    /* letter-spacing: -0.01em !important; */
    margin-bottom: 6px !important;
    font-size: 15px !important;}

@media only screen and (max-width: 768px) {
    
    .panelhold{ padding: 0px 5px;}
    .sec-right{display: none;}
    .sec-middle{width: 100% !important;}
    .download-panel{ 
        margin: 0px auto;
        padding: 15px;
        max-width: 500px;
        text-align: center;
        min-height: 340px;
        margin-top: 45px;
    }
    .panel-body1{margin-top: 45px;}
    .panel-left{width:20%; }
    .panel-right{width:78%;}
    /*.panel-body1{padding: 20px 30px !important;}*/
    .panel2{margin: 10px;}
    /* .panel-body1 {padding: 20px 20px !important;} */
    .wrapper {padding: 15px }
    .header h2 {font-size: 24px; }
    .download-panel {
        margin-top: 30px;
    }

  }

  @media only screen and (max-width: 767px)
  {
    .img_upload{
        width:20%;
        margin-bottom:20px;
    } 
    .panel-body1{
        padding: 20px 20px !important;
        min-height: 300px;
    }
    
    .panel-right {
        width: 100%;
    }
    .panel-left {
        width: 100%;
    }
    .flex-column {
        -ms-flex-direction: column!important;
        flex-direction: row;
    }
    .panel-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* .top-margin {
        margin-top: 90px;
    } */
    .sidemenu {
        margin-bottom: 10px;
    }
    .sidemenu ul li a {
        margin: 4px 0px;
        }
    .download-large-receipt {
        min-height: 250px;
        padding: 0px 50px 0px 50px
    }
    
    .download-large-receipt .row .rightp {
        padding: 0px 0px;
    }
  }
@media only screen and (max-width: 425px) {
    .img_upload{ width:80px}
    
    }


    /* .download-large-receipt {
        min-height: 250px;
        padding:0px;
    } */
    .example-h2 {
        margin: 10px;
      }
      
      .example-section {
        display: flex;
        align-content: center;
        align-items: center;
        height: 60px;
      }
      
      .example-margin {
        /* margin: 0 10px; */
      }

      .mat-progress-spinner circle, .mat-spinner circle {
        stroke: #c3272e !important;
        width:60px !important;
        }

        .mat-progress-bar .mat-progress-bar-buffer {
            background: #2d36b3 !important;
          }
          
          .btn-success
          {
            background-color:#3ab16d !important;
          }
        
          .mat-progress-spinner {
          width: 60px !important;
          height: 60px !important;
          position: absolute !important;
          z-index: 999 !important;
          left: 48% !important;
          top: 50% !important;
          
        }
         .subhead {
            font-family: inherit !important;
            font-weight: 300 !important;
            line-height: 1.3em !important;
            color: #333 !important;
            letter-spacing: -0.01em !important;
            margin-bottom: 45px !important;
            font-size: 16px !important;
         }
         .receipt-authentication .file-select-zone {
            padding-top: 0;
            padding-bottom: 0;
            width: 100%!important;
            text-align: center;
            cursor: pointer;
            color: #000;
            border: 1px dashed #5a8eff;
            display: flex;
            justify-content: center;
            height:80px;
            position: relative;
         }
         .receipt-authentication .file-select-zone .dropdown-placeholder{
            width: 100%;
            height: 80px;
            position: absolute;
            margin-top: 50px;
            border: none;
            background: transparent;
            left:0px;
         }
         .validate_msg{display: block;}
         .validate_msg a{display: inline; color:#0a58ca}
.textnote{
    /* font-weight: 400 !important; font-size:11px !important */
    font-weight: 400 !important;
    font-size: 13px !important;
    /* height: 17px; */
    line-height: 18px;
    display: block;
}
.textnote_success{
   color:#2eba53
}
.textnote_warning{
    color:#c3272e;
 }
 .textnote_info{
    color:#333;
 }
 

.upload-table .table {
    width: 100%;
    margin-bottom: 15px;
    color: #212529;
}
.icon-color{color: #a94442;}
.texterror{
    padding:15px 0px 0px 0px;
    /* margin-bottom: 20px; */
    /* border: 1px solid transparent; */
    /* border-radius: 4px; */
    color: #a94442;
    /* background-color: #f2dede; */
    /* border-color: #ebccd1 /* font-weight: 400 !important; font-size: 20px !important; color: red;;
    /* font-weight: 400 !important;
    font-size: 20px !important;
    color: red; */
}

.textsuccess{
    font-weight: 400 !important;
    font-size: 14px !important;
    color: green;
}

.panel-body{
    padding: 20px 0px !important;
    min-height: 300px;
}
.panel-body-error{
    padding: 110px 0px !important;
    min-height: 300px;
}
.panel-body1{
    padding: 20px 50px !important;
    min-height: 300px;
}

@media only screen and (device-width: 414px) 
 {
    .panel-body{  padding: 1px 1px !important; margin-top: 30px !important;}
    #tdFileName {width:56% !important; overflow-wrap:break-word !important;}
    /* .file-name1 {background-color: #792323; padding: 5px; height: 30px; width: 100%; border:#2eba53 !important} */
    .download-large-receipt .body-title
        {
            font-weight: 400; 
            font-size: 15px;
            text-align:left;
        }  
        .panel2 {
            margin: 0px !important;  
        }

}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .receipt-authentication .file-select-zone .dropdown-placeholder{
        width: 100%;
        height: 50px;
        position: absolute;
        margin-top: auto;
        border: none;
        background: transparent;
        left:0px;
     }
}


@media only screen and (max-width: 480px) 
 {
    .panel-left{width:100%; margin: 0%;}
    .panel-right{width:100%;margin: 10p; border:0px; background: #fff; border-radius: 0px;}
    .panel-body1 {padding: 20px 20px !important; margin-top: 20px;}
    .upload-instructions {padding: 0px !important;}
    .panel-left{margin: 0px; padding-bottom: 0px;}
    .top-margin{ margin-top:105px;}
    .panelhold {
        padding: 0px 0px 0px 0px;
        background-color: #F9F9F9;
        border: solid 0px #fff;
        box-shadow: 0px 0px 0px rgb(0 0 0 / 50%);
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        min-height: 550px;
    }
    .download-large-receipt {        padding: 30px 10px 10px 10px;    }
    .img_upload{width: 80px !important;height: 80px; margin-bottom: 20px;}
    


    .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;}

 }

 