

body{
    margin: 0px; 
    padding: 0px;
    background-color: #f8f8f8;
}

@media(max-width: 480px) {
   .hidden-mobile {
       display: none;
  }
}
@media(max-width: 1023px) {
   .hidden-tablet {
       display: none;
  }
}
@media(min-width: 640px) {
   .hidden-desktop {
       display: none;
  }
}
@media(max-width: 480px) {
    .mdc-layout-grid{
        margin: 0px;
        padding:8px;
    }
}

.app-fab--absolute {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}


@media(min-width: 1024px) {
   .app-fab--absolute {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.app-login-button-toolbar {
    margin-top:0.5rem;
}



ul.breadcrumb {
    margin:0px;
    padding:0px;
    list-style: none;

}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;

}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: white;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

fieldset {
    margin:0px;
    padding:0px;
    border:0px;
}

.width100pc {
    width:100%;
}

.no-padding {
    padding:0px;
}
.no-margin {
    margin: 0px;
}
.field.ERROR > .mdc-text-field__input {
    border-bottom-color:  red!important;
}
.messages{
    opacity: 100;
    padding: 0px;
}
li.error  {
    color:red;
    list-style: none;
}
.checkbox > label {
    display: inline-block;
    padding: 11px;
}
.allign-right {
    text-align: right;
}
.self-algin-center {
    display: flex;
    align-self: center;
}
.bg-white {
     background-color:white;  
}
td {
    padding:6px 13px;
}

   .allign-center{
                justify-content: center;
            }
    @media(max-width: 480px) {
        .mdc-grid-tile {
            width: 300px;
        }
    }
.mdc-grid-tile__secondary {
background-color: var(--mdc-theme-background);
color: var(--mdc-theme-text-primary-on-background);
}


/* collapsible list no js version */

div.panel{
               
                margin: auto;
                margin-top: calc(5% - 0px);
            }
            details{
                background:#fff;
                font-size:16px;
                border-bottom:1px solid #e0e0e0;
                box-shadow:0 0 2px rgba(0,0,0,0.12),0 2px 4px rgba(0,0,0,0.24);
                display:flex; }

            details div.content{
                padding:0px 24px 24px 24px;
            }

            details[open] summary:after {
                color:#9e9e9e;
                content: "expand_less";
                font-family: 'Material Icons';
            }
            details[open]{
                margin-top:16px;
                margin-bottom:16px;
                border:none;
                border-radius: 2px;


            }
            details[open]:first-child{
                margin-top:0;
                margin-bottom:16px;
                border:none;
            }
            details[open]:last-child{
                margin-top:16px;
                margin-bottom:0px;
                border:none;
            }

            summary{
                outline:none;
                cursor: pointer;
                padding: 16px 24px;
                color:#212121;
                position: relative;
                font-size: 15px;
            }
            summary:hover{
                background:#eeeeee;
            }

            details[open] summary:hover{
                background:none;
            }
            summary ul {
                padding-left: 0;
                list-style: none;
                display: -webkit-flex;
                display: flex;
                align-items: center;
            }
            summary ul li{
                flex: 1 100%;
                flex-flow: row wrap;
            }
            summary ul li span{
                display: block;
                font-size: 12px;
                margin-top: 6px;
                opacity: .75;
            }
            summary::-webkit-details-marker {
                display: none;
            }
            summary::after {
                content: "expand_more";
                font-family: 'Material Icons';
                color: #9e9e9e;
                font-size: 1.5em;
                padding: 0;
                text-align: center;
                margin-top: 0;
                position: absolute;
                top: calc(50% - 12px);
                bottom: 0;
                right: 15px;
                width: 6%;
            }  


/* end collapsible menu*/
.mdc-data-table + .mdc-data-table {
  margin-top: 16px;
}


.mdc-data-table {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.87) !important;
  color: var(
    --mdc-theme-text-primary-on-background,
    rgba(0, 0, 0, 0.87)
  ) !important;
  -webkit-box-orient: vertical;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.mdc-data-table,
.mdc-data-table__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
}
.mdc-data-table__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 64px;
  -webkit-box-orient: horizontal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  padding: 0 14px 0 24px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.mdc-data-table__header-title {
  font-weight: 400;
  font-size: 20px;
  display: inline-block;
  margin: 0;
}
.mdc-data-table__header-actions {
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(
    --mdc-theme-text-secondary-on-background,
    rgba(0, 0, 0, 0.54)
  ) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse nowrap;
  flex-flow: row-reverse nowrap;
}
.mdc-data-table__header-actions :nth-last-child(n + 2) {
  margin-left: 24px;
}
.mdc-data-table__content {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.mdc-data-table__content tr:first-child,
.mdc-data-table__content tr:nth-last-child(n + 2) {
  border-bottom: 1px solid #e0e0e0;
}
.mdc-data-table__content tr.mdc-data-table--selected {
  background-color: #f5f5f5;
}
.mdc-data-table__content td,
.mdc-data-table__content th {
  text-align: left;
  padding: 12px 16px;
  vertical-align: middle;
}
.mdc-data-table__content td.mdc-data-table--numeric,
.mdc-data-table__content th.mdc-data-table--numeric {
  text-align: left;
}
.mdc-data-table__content th {
  font-size: 13px;
  line-height: 17px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(
    --mdc-theme-text-secondary-on-background,
    rgba(0, 0, 0, 0.54)
  ) !important;
}
.mdc-data-table__content th.mdc-data-table--sortable {
  cursor: pointer;
}
.mdc-data-table__content th.mdc-data-table--sortable.mdc-data-table--sort-asc,
.mdc-data-table__content th.mdc-data-table--sortable.mdc-data-table--sort-desc {
  color: rgba(0, 0, 0, 0.87) !important;
  color: var(
    --mdc-theme-text-primary-on-background,
    rgba(0, 0, 0, 0.87)
  ) !important;
}
.mdc-data-table__content
  th.mdc-data-table--sortable.mdc-data-table--sort-asc:before,
.mdc-data-table__content
  th.mdc-data-table--sortable.mdc-data-table--sort-desc:before {
  font-family: Material Icons;
  font-size: 16px;
  vertical-align: text-bottom;
  line-height: 16px;
  margin-right: 8px;
}
.mdc-data-table__content
  th.mdc-data-table--sortable.mdc-data-table--sort-asc:before {
  content: "arrow_downward";
}
.mdc-data-table__content
  th.mdc-data-table--sortable.mdc-data-table--sort-desc:before {
  content: "arrow_upward";
}
.mdc-data-table__content td {
  font-size: 14px;
}
/*
.mdc-data-table__content tbody tr:hover {
  background-color: #eee;
}
*/
.mdc-data-table__footer {
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(
    --mdc-theme-text-secondary-on-background,
    rgba(0, 0, 0, 0.54)
  ) !important;
  border-top: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  height: 56px;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  padding: 0 14px 0 0;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 13px;
}
.mdc-data-table__footer,
.mdc-data-table__footer .mdc-data-table__per-page {
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.mdc-data-table__footer .mdc-data-table__per-page {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-align: center;
  width: 64px;
  background-repeat: no-repeat;
  background-position: right 7px center;
  text-align: right;
  cursor: pointer;
}
.mdc-data-table__footer .mdc-data-table__per-page:after {
  font-family: Material Icons;
  font-size: 20px;
  content: "arrow_drop_down";
  margin: 0 2px;
}
.mdc-data-table__footer .mdc-data-table__results {
  margin-left: 32px;
}
.mdc-data-table__footer .mdc-data-table__prev {
  margin-left: 32px;
  cursor: pointer;
}
.mdc-data-table__footer .mdc-data-table__next {
  margin-left: 24px;
  cursor: pointer;
}
.mdc-data-table [dir="rtl"] td,
.mdc-data-table [dir="rtl"] th,
.mdc-data-table[dir="rtl"] td,
.mdc-data-table[dir="rtl"] th,
.mdc-data-table__content[dir="rtl"] td,
.mdc-data-table__content[dir="rtl"] th {
  text-align: right;
}
.mdc-data-table [dir="rtl"] td.mdc-data-table--numeric,
.mdc-data-table [dir="rtl"] th.mdc-data-table--numeric,
.mdc-data-table[dir="rtl"] td.mdc-data-table--numeric,
.mdc-data-table[dir="rtl"] th.mdc-data-table--numeric,
.mdc-data-table__content[dir="rtl"] td.mdc-data-table--numeric,
.mdc-data-table__content[dir="rtl"] th.mdc-data-table--numeric {
  text-align: left;
}
.mdc-data-table
  [dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:before,
.mdc-data-table
  [dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:before,
.mdc-data-table[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:before,
.mdc-data-table[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:before,
.mdc-data-table__content[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:before,
.mdc-data-table__content[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:before {
  display: none;
}
.mdc-data-table
  [dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:after,
.mdc-data-table
  [dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:after,
.mdc-data-table[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:after,
.mdc-data-table[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:after,
.mdc-data-table__content[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:after,
.mdc-data-table__content[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:after {
  font-family: Material Icons;
  font-size: 16px;
  vertical-align: text-bottom;
  line-height: 16px;
  margin-left: 8px;
}
.mdc-data-table
  [dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:after,
.mdc-data-table[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:after,
.mdc-data-table__content[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-asc:after {
  content: "arrow_downward";
}
.mdc-data-table
  [dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:after,
.mdc-data-table[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:after,
.mdc-data-table__content[dir="rtl"]
  .mdc-data-table--sortable.mdc-data-table--sort-desc:after {
  content: "arrow_upward";
}
.mdc-data-table--dark,
.mdc-theme--dark .mdc-data-table {
  color: #fff !important;
  color: var(--mdc-theme-text-primary-on-dark, #fff) !important;
  background-color: #303030;
}
.mdc-data-table--dark .mdc-data-table__header-actions,
.mdc-theme--dark .mdc-data-table .mdc-data-table__header-actions {
  color: hsla(0, 0%, 100%, 0.7) !important;
  color: var(
    --mdc-theme-text-secondary-on-dark,
    hsla(0, 0%, 100%, 0.7)
  ) !important;
}
.mdc-data-table--dark .mdc-data-table__content tr:first-child,
.mdc-data-table--dark .mdc-data-table__content tr:nth-last-child(n + 2),
.mdc-theme--dark .mdc-data-table .mdc-data-table__content tr:first-child,
.mdc-theme--dark
  .mdc-data-table
  .mdc-data-table__content
  tr:nth-last-child(n + 2) {
  border-bottom-color: #4f4f4f;
}
.mdc-data-table--dark .mdc-data-table__content tr.mdc-data-table--selected,
.mdc-theme--dark
  .mdc-data-table
  .mdc-data-table__content
  tr.mdc-data-table--selected {
  background-color: #3a3a3a;
}
.mdc-data-table--dark .mdc-data-table__content th,
.mdc-theme--dark .mdc-data-table .mdc-data-table__content th {
  color: hsla(0, 0%, 100%, 0.7) !important;
  color: var(
    --mdc-theme-text-secondary-on-dark,
    hsla(0, 0%, 100%, 0.7)
  ) !important;
}
.mdc-data-table--dark .mdc-data-table__content th.mdc-data-table--sort-asc,
.mdc-data-table--dark .mdc-data-table__content th.mdc-data-table--sort-desc,
.mdc-theme--dark
  .mdc-data-table
  .mdc-data-table__content
  th.mdc-data-table--sort-asc,
.mdc-theme--dark
  .mdc-data-table
  .mdc-data-table__content
  th.mdc-data-table--sort-desc {
  color: #fff !important;
  color: var(--mdc-theme-text-primary-on-dark, #fff) !important;
}
.mdc-data-table--dark .mdc-data-table__content tbody tr:hover,
.mdc-theme--dark .mdc-data-table .mdc-data-table__content tbody tr:hover {
  background-color: #414141;
}
.mdc-data-table--dark .mdc-data-table__footer,
.mdc-theme--dark .mdc-data-table .mdc-data-table__footer {
  color: hsla(0, 0%, 100%, 0.7) !important;
  color: var(
    --mdc-theme-text-secondary-on-dark,
    hsla(0, 0%, 100%, 0.7)
  ) !important;
  border-top-color: #4f4f4f;
}

/* custom mdc table */