:root {
    /* formlookups,
        modals,
        tabs,
        calendars
        menu
        pagination,*/
    --primary: #1976d2;
       /* active tab,
        active pagination,table headers
        record hover(listpage, subtable, subtabletoshow, lookups)
        buttons,*/
    --secondary: #51769c;
        /*accordion*/
    --tertiary: #f2f2f2;
     /*toolbar icons*/
    --quaternary: #1972a9;

    --label_color:  #233168;

    --focus_color:  #3d89e39e;
}

@charset "UTF-8";
*,
*::before,
*::after {
    box-sizing: border-box;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(font/Roboto-Regular.ttf) format('ttf');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
    width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    overflow-x: hidden;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}


h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: blue;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

#bloom-app-index {
    min-height: 96vh
}

#bloom-app-main {
    min-height: 96vh
}

a:focus, a:hover {
    color: #2962ff;
    text-decoration: none;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}
i:hover{
    cursor: pointer !important;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

/*table {
  border-collapse: collapse;
}*/

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}


textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}


[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.ml-1 {
    margin-left: 5px;
}

.ml-2 {
    margin-left: 10px;
}

.ml-3 {
    margin-left: 15px;
}

.mr-1 {
    margin-right: 5px;
}

.mr-2 {
    margin-right: 10px;
}

.mr-3 {
    margin-right: 15px;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}


small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014 \00A0";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}


@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }

    .order-sm-6 {
        order: 6;
    }

    .order-sm-7 {
        order: 7;
    }

    .order-sm-8 {
        order: 8;
    }

    .order-sm-9 {
        order: 9;
    }

    .order-sm-10 {
        order: 10;
    }

    .order-sm-11 {
        order: 11;
    }

    .order-sm-12 {
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }

    .order-md-6 {
        order: 6;
    }

    .order-md-7 {
        order: 7;
    }

    .order-md-8 {
        order: 8;
    }

    .order-md-9 {
        order: 9;
    }

    .order-md-10 {
        order: 10;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }

    .order-lg-6 {
        order: 6;
    }

    .order-lg-7 {
        order: 7;
    }

    .order-lg-8 {
        order: 8;
    }

    .order-lg-9 {
        order: 9;
    }

    .order-lg-10 {
        order: 10;
    }

    .order-lg-11 {
        order: 11;
    }

    .order-lg-12 {
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }

    .order-xl-6 {
        order: 6;
    }

    .order-xl-7 {
        order: 7;
    }

    .order-xl-8 {
        order: 8;
    }

    .order-xl-9 {
        order: 9;
    }

    .order-xl-10 {
        order: 10;
    }

    .order-xl-11 {
        order: 11;
    }

    .order-xl-12 {
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table th,
.table td {
    padding: 0.5rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0;
}


.table-striped > table > tbody > tr:nth-child(2n) td {
    /*background: #EBEBEB;*/
}

.table-striped > table > tbody > tr:nth-of-type(odd) {
    background-color: white;
    /*background-color: #eaeaea;*/
}

.table-striped > table > tbody > tr.blsubtabletr:nth-of-type(2n+1) {
    background-color: white;
    /*border-bottom: 1px solid rgba(224, 224, 224, 1);
    border-bottom: 1px solid rgba(224, 224, 224, 1);*/
    border-top: 1px solid rgba(0,0,0,.12);
}
.table-striped > table > tbody > tr..blsubtabletr{
    border-top: 1px solid rgba(0,0,0,.12);
}
.table-striped {
    /*margin: 10px !important;*/
    max-height: 700px;
    overflow: auto;
}
@media only screen and (max-height: 850px) {
    .table-striped {
        max-height: 520px;
    }
}
.table-striped.dashboardtable {
    /*padding: 5px !important;*/
    max-height: 530px;
    overflow: auto;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: white;
}

.table-striped.subtable {
    padding: 0px !important;
    /*margin-top: 5px;*/
    max-height: 530px;
    /*min-height: 270px;*/
}
.collapsibleTable {
    padding-top: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
#collapsibleTable .bltable_actions_wrapper{
    /*overflow-x: auto;*/
    margin: 0 0 15px 0;
}
.table_actions_button_wrapper{
    padding: 0 10px 10px 10px;
    display: flex;
    flex-wrap: wrap;
}
.bltable_actions_wrapper .profile-dropdown-div .profile-dropdown-menu{
    height: 400px;
    overflow-y: auto;
}
.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
    background-color: #c3e6cb;
}

.table-hover .table-success:hover {
    background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
    background-color: #bee5eb;
}

.table-hover .table-info:hover {
    background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
    background-color: #ffeeba;
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
    background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
    background-color: #fdfdfe;
}

.table-hover .table-light:hover {
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-md > .table-bordered {
        border: 0;
    }
}

@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
    border: 0;
}

/*
###########################################################
  TABLE END
###########################################################
*/
/*
###########################################################
  DROPDOWN START
###########################################################
*/
.bldropdown {
    position: relative;
}

.blue-icons-nav .navbar_icons i {
    color: var(--primary);
}

.bldropdown span {
    /*color: #FFF;*/
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02857em;
    /*text-transform: uppercase;*/
    line-height: 1.75;
}

.dropdown-menu .material-icons {
    vertical-align: middle;
}

.dropdown-submenu .material-icons {
    vertical-align: middle;
}

.bldropdown .nav-link .material-icons {
    vertical-align: middle;
    color: var(--primary);
    margin-right: 5px;
}

.nav-link {
    position: relative;
    padding: 10px;
    font-weight: 400;
    border-radius: 4px;
    font-size: 20px;
    color: #fff;
}

.second_version bldropdown {
    transform: none;
    transition: opacity 294ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 196ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    outline: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: auto;
    transform-origin: 0px 16px;
    color: rgba(0, 0, 0, 0.87);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;


}

.second_version .dropdown-with-icons .dropdown-item {
    width: auto;
    overflow: hidden;
    font-size: 1rem;
    box-sizing: border-box;
    min-height: 48px;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    padding-top: 6px;
    white-space: nowrap;
    letter-spacing: 0.00938em;
    padding-bottom: 6px;
    color: rgba(0, 0, 0, 0.87);
    display: flex;
}

.second_version .dropdown-with-icons .dropdown-item:hover {
    background-color: var(--secondary);
    box-shadow: none;
    color: rgba(0, 0, 0, 0.87);
}

.dropdown-item {
    display: flex;
    position: relative;
    flex-flow: nowrap;
    align-items: center;
    /*font-size:20px;*/
    width: 100%;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-with-icons .dropdown-item {
    /*padding: 0.75rem 1.25rem 0.75rem 1.25rem;*/
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-bottom: 0;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.dropdown-with-icons .dropdown-item:hover {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
    background-color: #2962ff;
    color: #fff;

}

.nav-item:hover .dropdown-toggle::after {
    background: #fff;
}

.bldropdown .dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    padding: 5px 0;
    border: 0;
    transform-origin: 0 0;
    will-change: transform, opacity;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);

}


/*
   ###########################################################
     DROPDOWN END
   ###########################################################
*/


/*@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}*/

/*
      ###########################################################
        NAVIGATION START
      ###########################################################
   */
.iportman-logo img {
    height: 45px;
}

.envision-logo {
    height: 45px;

}

.navbar-nav {
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .envision-logo {
        display: none;
    }
}

@media (max-width: 992px) {
    .dropdown-item {
        padding: .25rem 0.5rem;
        font-size: 16px;
    }

    .menuDropdownIcon {
        border-width: 5px 0 5px 5px;
        margin-top: 2px;
        margin-right: 0px;
    }

    .bl_table td {
        font-size: 14px;
    }

    #bl-messagemodal-container {
        left: 10px !important;
        max-width: 750px;
    }

    .container-fluid {
        padding-right: 5px;
        padding-left: 5px;
    }
}

.navbar_icons {
    position: relative;
    border: none;
    flex: 0 0 auto;
    margin-right: 10px;
    padding: 15px;
    overflow: visible;
    font-size: 1.5rem;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
    border: 0;
    background: transparent;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: 0;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.navbar_icons.label {
    width: 100%;
    display: flex;
    align-items: inherit;
    justify-content: inherit;
}

.navbar_icons i {
    width: 24px;
    height: 24px;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
    /*color: white;*/
    color: rgba(0, 0, 0, 0.7);
}

.navbar_icons:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.navbar_search {
    display: flex;
    align-items: center;
    position: relative;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    margin-left: 8px;
    margin-right: 16px;
    border-radius: 4px;
    /*background-color: rgba(255, 255, 255, 0.15);*/
    background-color: rgba(170, 170, 170, 0.1);
    color: #fff;
}

.search_icon {
    width: 72px;
    height: 60px;
    display: flex;
    position: absolute;
    align-items: center;
    pointer-events: none;
    justify-content: center;
}

.search_icon svg {
    /*fill: currentColor;*/
    fill: rgba(0, 0, 0, 0.7);
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.search_input_wrapper {
    color: #fff;
    cursor: text;
    display: inline-flex;
    position: relative;
    font-size: 1rem;
    box-sizing: border-box;
    align-items: center;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.1876em;
    letter-spacing: 0.00938em;
}

.search_input_wrapper input::placeholder {
    /*color: #fff;*/
    color: rgba(0, 0, 0, 0.7);
}

.search_input_wrapper input:focus {
    outline: none;
    width: 200px;
}

.search_input_wrapper input {
    position: absolute;
    top: 0px;
    left: 0px;
    border-color: transparent;
    width: 120px;
    padding: 8px 8px 8px 72px;
    margin: 0;
    display: block;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: none;
    opacity: 1;
    font: inherit;
    color: #fff;
    width: 100%;
    border: 0;
    height: 1.1876em;
    margin: 0;
    display: block;
    min-width: 0;
    background: none;
    box-sizing: content-box;
    animation-name: mui-auto-fill-cancel;
    letter-spacing: inherit;
    animation-duration: 10ms;
    -webkit-tap-highlight-color: transparent;
}

.search_input_wrapper .base_input {
    position: absolute;
    top: 0px;
    left: 0px;
    border-color: transparent;
    box-shadow: none;
    opacity: 1;
    background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);
    width: 120px;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    padding: 8px 8px 8px 72px;
    color: rgba(0, 0, 0, 0.7);
}

.search_input_wrapper .search_input {
    position: relative;
    vertical-align: top;
    background-color: transparent;
    width: 200px;
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    padding: 8px 8px 8px 72px;
    color: rgba(0, 0, 0, 0.7);
}

.nav-item-search {
    display: flex;
    align-items: center;

}

#dropdownMenu1 {
    padding: 0;
}

/*
        ###########################################################
          NAVIGATION End
        ###########################################################
     */
/*
        ###########################################################
          NAVIGATION End
        ###########################################################
    */
.navbar .navbar-brand {
    margin-left: 20px;
}

/*  .sidebar-menu{
      display: block;
       position: relative;
       top: 0;
       left: 0;
       z-index: 1;
       -webkit-user-select: none;
       user-select: none;
     }
     .sidebar-menu a{
       text-decoration: none;
       color: #232323;
       transition: color 0.3s ease;
     }
    .sidebar-menu a:hover{
      color: tomato;
    }
    .sidebar-menu input{
      display: block;
      width: 40px;
      height: 32px;
      position: absolute;
      top: -7px;
      left: -5px;
      cursor: pointer;
      opacity: 0; *//* hide this *//*
      z-index: 2; *//* and place it over the hamburger *//*
      -webkit-touch-callout: none;
    }
    .sidebar-menu span{
      display: block;
      width: 33px;
      height: 4px;
      margin-bottom: 5px;
      position: relative;
      background: #fff;
      border-radius: 3px;
      z-index: 1;
      transform-origin: 4px 0px;
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                  opacity 0.55s ease;
    }
    .sidebar-menu span:first-child{
      transform-origin: 0% 0%;
    }
    .sidebar-menu span:nth-last-child(2){
      transform-origin: 0% 100%;
    }
    .sidebar-menu input:checked ~ span{
      opacity: 1;
      transform: rotate(45deg) translate(-2px, -1px);
      background: #232323;
    }
    .sidebar-menu input:checked ~ span:nth-last-child(3){
      opacity: 0;
      transform: rotate(0deg) scale(0.2, 0.2);
    }
    .sidebar-menu input:checked ~ span:nth-last-child(2){
      transform: rotate(-45deg) translate(0, -1px);
    }
    #menu{
      position: absolute;
      width: 300px;
      margin: -100px 0 0 -50px;
      padding: 50px;
      padding-top: 125px;
      background: #ededed;
      list-style-type: none;
      -webkit-font-smoothing: antialiased;
      *//* to stop flickering of text in safari *//*
      transform-origin: 0% 0%;
      transform: translate(-100%, 0);
      transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    }
    #menu li{
      padding: 10px 0;
      font-size: 22px;
    }
    .sidebar-menu input:checked ~ ul{
      transform: none;
    }*/

/*
       ###########################################################
         Select START
       ###########################################################
    */

.portname_wrapper .wrap {
    position: absolute;
    right: 0;
    width: 200px;
    margin: 0 auto;
}

.select-wrapper {
    position: relative;
    padding: 10px;
    font-size: 18px;
    border-radius: 4px;
    /*border: 1px solid rgba(0,0,0,0.87);*/
}

.select-text:focus {
    outline: none;
    border: 1px solid var(--primary);
}

.select-wrapper .select-text {
    appearance: none;
    -webkit-appearance: none;
    color: rgba(0, 0, 0, 0.54);
    background: none;
    border: none;
    width: 100%;

}

.select-wrapper:after {
    position: absolute;
    top: 28px;
    right: 20px;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.54);
    pointer-events: none;
}
.select-label {
    font-size: 13px !important;
    top: 0px !important;
    max-width: calc(100% - 30px);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
    color: rgba(0, 0, 0, 0.54);
    background: inherit;
    /*font-size: 18px;*/
    font-weight: 400;
    position: absolute;
    padding: 0 10px 0 5px;
    pointer-events: none;
    /*top: 12px;*/
    margin-bottom: 0;
    left: 10px;
    transition: 0.2s ease all;

}

.select-text:focus ~ .select-label, .select-text:valid ~ .select-label {
    color: #2962ff;
    font-size: 14px;
    top: -8;
    transition: 0.2s ease all;

}

.select-text:valid:not(focus) ~ .select-label {
    color: rgba(0, 0, 0, 0.26);
    /* background: red;*/
}

.select-text:valid:focus ~ .select-label {
    color: #2962ff;
}

.listdata-btn {
    border-left: 0 !important;
    padding-left: 16px !important;
    margin-left: 25px;
    line-height: 1.7;
}

.listdata-btn div {
    line-height: 1.7;
}

.blue-nav-col-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blue-nav-col-right i {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.blue-bar-sec .material-icons, .blue-bar-sec .dropdown-item span {
    /*margin-right: 10px;*/
}

.blue-bar-heading {
    color: #fff;
    font-weight: 400;
    margin-top: 0.42em;
    margin-bottom: 0;
    font-size: 1.2em;
    /*line-height: 0.5em;*/
    display: inline-block;
    position: relative;

    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 380px;
    min-width: auto;
    white-space: nowrap;
}

.title_wrapper h5 {
    display: flex;
    align-items: center;
    /*color: rgba(0, 0, 0, 0.54);*/
    color: var(--primary);
    margin-bottom: 0;
}
@media screen and (max-width: 800px) {
    .title_wrapper h5 {
        font-size: 14px;
    }
}
.boat_icon {
    color: var(--primary);
    margin-left: 10px;
    margin-right: 10px;
}

.form_title_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*padding-bottom: 15px;*/
    padding-top: 15px;
    width: 100%;
}

.form_title_wrapper .title_wrapper h5 {
    padding-left: 20px;
}

.disableFTSaveButton {
    cursor: not-allowed;
    fill: grey;
    color: grey;
}
.disableFTSaveButton:hover
{
    cursor: not-allowed !important;
}

.disableFTSaveButton .action_wrapper i {
    fill: grey;
    color: grey;
}
.action_wrapper i.disableFTSaveButton{
    fill: grey;
    color: grey;
    cursor: not-allowed;
}
.action_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.action-button .dropdown-item i {
    margin-right: 12px;
}

.action_wrapper .action-button {
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.54) !important;
    padding: 12px;
    overflow: visible;
    font-size: 1.5rem;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
    color: inherit;
    border: 0;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: 0;
    position: relative;
    align-items: center;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.action_wrapper .action-button:hover {
    transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: rgba(0, 0, 0, 0.04) !important;
}

.action-button button {
    margin: 0;
    padding: 0;
}

.action_wrapper .button-label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action_wrapper i {
    /*fill: rgba(0, 0, 0, 0.54);
    color: rgba(0, 0, 0, 0.54);*/
    fill: var(--quaternary);
    color: var(--quaternary);
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.6rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
    vertical-align: middle;
}
.form-settings-dropdown-menu span:hover i{
   color: white;
}
.form-settings-dropdown-menu span i:hover{
   box-shadow: 0 0 7px white;
}
.blue-bar-sec {
    /*margin-bottom: 30px;*/
}

.card-nav-tabs {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 0;
    border-radius: 6px;
    color: rgba(0, 0, 0, .87);
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.card-header {
    color: rgba(0, 0, 0, 0.87);
    /*background-color: #f5f5f5;*/
    background-color: var(--primary);
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    padding: 0 !important;
    border: 0;
    margin-top: -30px;
}

.nav-tabs-navigation {

}

.nav-tabs-wrapper .nav-item {
    position: relative;
}

.nav-tabs-wrapper .nav-pills {
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: transparent;
    white-space: nowrap;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.registration-form-sub-div .nav-tabs-wrapper .nav-link {
    border: 0;
    /*color: rgba(0, 0, 0, 0.54);*/
    color: #fff;
    font-weight: 500;
    padding: 15px 20px 15px 45px;
    /*text-transform: capitalize;*/
    font-size: 15px;
    margin: 0;
}

.registration-form-sub-div .nav-pills .nav-link:hover {
    border: 0;
    /*color: #1976d2;*/
    color: #fff;
}

.blue-icon-main:before {
    content: '\E532';
    font-family: "Material Icons";
    display: block;
    position: absolute;
    left: 15px;
    bottom: 16px;
    font-size: 24px;
    /* color: rgba(0, 0, 0, 0.54);*/
    color: #fff;
}

.blue-icon-main.active:before {
    content: '\E532';
    font-family: "Material Icons";
    display: block;
    position: absolute;
    left: 15px;
    bottom: 16px;
    font-size: 24px;
    /*color: rgba(25, 118, 210, 1);*/
    color: #fff;
}

.registration-form-sub-div .nav-pills .nav-link.active {
    /*background-color: transparent;*/
    background: var(--secondary) 100% 100% no-repeat padding-box;
    transition: background-color .3 .2;
    /*color: #1976d2;*/
    color: #fff;
    border: 0;
    font-weight: 500;
    padding: 15px 20px 15px 45px;
    /*text-transform: capitalize;*/
    font-size: 15px;
    border-radius: 0;
    border-bottom: 2px solid var(--primary);
    margin: 0;
    filter: brightness(1);
    font-weight: bold;
}

.registration-form-sub-div .card-body {
    padding: 0;
}

.underline-wrapper {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    color: var(--primary);
}

.registration-form-sub-div .nav-pills .nav-link.active .underline-wrapper {
    color: var(--primary);
}

/*
###########################################################
  Pagination Start
###########################################################
*/

.pagination_wrapper {
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: flex-end;
    margin: 15px 0;
}

.pagination_wrapper .disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.pagination_wrapper .ul-pagintaion {
    margin: 0;
    display: flex;
    padding: 0;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    text-align: right;
    justify-content: flex-end;
}

.pagination_wrapper a {
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    color: rgba(0, 0, 0, 0.87);
    min-width: 36px;
    margin: 0 3px;
    font-size: 0.875rem;
    width: fit-content;
    box-sizing: border-box;
    text-align: center;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1;
    border-radius: 4px;
    letter-spacing: 0.01071em;
    border: 1px solid rgba(0, 0, 0, 0.23);
    cursor: pointer;
    display: inline-flex;
    outline: 0;
    padding: 10px;
    position: relative;
    align-items: center;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.paginate_button{
    padding: 5px !important;
}

.pagination_wrapper a:hover {
    color: white !important;
    background-color: var(--secondary);
}


.pagination_wrapper a:hover.disabled {
    opacity: 0.38;
    background: none;
    color: black !important;
}

.pagination_wrapper .ul-pagintaion li .first {
    margin-right: 40px;
}

.pagination_wrapper .ul-pagintaion li .first:after {
    content: '....';
    left: 30px;
    position: absolute;
    margin: 0 15px;
}

.pagination_wrapper .current1 {
    color: white !important;
    background-color: var(--secondary);
}

/*
###########################################################
  Pagination END
###########################################################
*/


.blue-bar-sec {
    /*display: none;*/
    display: block;
}

/*[title]{
    background-color: black;
    color: #fff;
    border-radius: 2px;
    font-size: 12px;
    padding: 8px;
    font-weight: 500;
}*/
/*
###########################################################
  Table END
###########################################################
*/
.table-responsive {
    /* box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);*/
    width: 100%;
    overflow-x: auto;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    overflow: hidden;
}

.bl_table {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}

.bl_table_msg{
    font-weight: bold;
    color: #ec5c07;
    padding-left: 0.5rem;
    line-height: 1.5rem;
}

.bl_table_msg.formlookup{
    color: white;
}

.bl_table thead {
    display: table-header-group;
}

.bl_table thead tr {
    color: inherit;
    display: table-row;
    outline: 0;
    vertical-align: middle;
    /*border-bottom: 1px solid rgba(224, 224, 224, 1);*/
}

.bl_table thead th {
    color: #fff;
    font-weight: 700;
    line-height: 1rem;
    display: table-cell;
    /*padding: 16px !important;*/
    font-size: 16px;
    text-align: left;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    /*border-bottom: 1px solid rgba(224, 224, 224, 1);*/
    letter-spacing: 0.01071em;
    vertical-align: middle;
    /*background-color: #284a5d96;
    background-color: var(--color);*/
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.375rem;
    font-weight: 600;
    letter-spacing: 0.00714286em;
    text-decoration: inherit;
    text-transform: inherit;
    box-sizing: border-box;
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    height: 56px;
    background-color: var(--secondary);
    white-space: nowrap;
    width: min-content !important;
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
}

.bl_table td {
    display: table-cell;
    /*padding: 6px 16px 6px 16px !important;*/
    font-size: 15px;
    /*color: rgba(0, 0, 0, 0.87);*/
    text-align: left;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-family: Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    /*border-bottom: 1px solid rgba(224, 224, 224, 1);*/
    letter-spacing: 0.01071em;
    letter-spacing: 0.0178571em;
    text-decoration: inherit;
    text-transform: inherit;
    box-sizing: border-box;
    /*text-overflow: ellipsis;
    overflow: hidden;*/
    height: 52px;
    padding-left: 16px;
    padding-right: 16px;
    vertical-align: middle;
    width: min-content !important;
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    white-space: nowrap;

}
.dashboard-table-sec .table-striped .bl_table td{
     width: min-content;
     /*min-width: 100px;*/
     white-space: nowrap;
}
.dashboard-table-sec .table-striped .bl_table th{
     width: min-content;
     /*min-width: 100px;*/
     white-space: nowrap;
}

.bl_table tbody tr {
    color: inherit;
    display: table-row;
    outline: 0;
    vertical-align: middle;
    cursor: pointer;
}

.search-table-wrapper {
    border: 0;
    margin: 0;
    display: inline-flex;
    padding: 0;
    position: relative;
    min-width: 0;
    flex-direction: column;
    vertical-align: top;
    width: 100%;
}

.search-wrapper {
    position: relative;
    color: rgba(0, 0, 0, 0.87);
    cursor: text;
    display: inline-flex;
    position: relative;
    font-size: 1rem;
    box-sizing: border-box;
    align-items: center;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.1876em;
    letter-spacing: 0.00938em;
}

.search-wrapper:before {
    left: 0;
    right: 0;
    bottom: 0;
    content: "\00a0";
    position: absolute;
    transition: border-bottom-color 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    pointer-events: none;
}

.search-icon-wrapper {
    height: 0.01em;
    display: flex;
    max-height: 2em;
    align-items: center;
    white-space: nowrap;
    margin-right: 8px;
}

.search-icon-wrapper span {
    width: 1em;
    height: 1em;
    overflow: hidden;
    font-size: 16px;
    flex-shrink: 0;
    user-select: none;
}

.search-table-wrapper input {
    color: currentColor;
    width: 100%;
    border: 0;
    height: 1.1876em;
    margin: 0;
    display: block;
    padding: 6px 0 7px;
    font-size: 14px;
    min-width: 0;
    background: none;
    box-sizing: content-box;
    animation-name: mui-auto-fill-cancel;
    letter-spacing: inherit;
    animation-duration: 10ms;
    -webkit-tap-highlight-color: transparent;
}

.search-table-wrapper input:focus {
    outline: 0;
}

.search-table-wrapper button {
    cursor: default;
    pointer-events: none;
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.54);
    padding: 5px;
    overflow: visible;
    font-size: 12px;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
    outline: 0;
    border: 0;
}

.search-underline-wrapper {
    position: relative;
}

.search-underline-wrapper:after {
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    transition: transform 200ms cubic-bezier(0.0, 0, 0.2, 1) 0ms;
    border-bottom: 2px solid var(--primary);
    pointer-events: none;
}

.search-underline-wrapper .label {
    width: 100%;
    display: flex;
    align-items: inherit;
    justify-content: inherit;
}

.search-underline-wrapper .label .material-icons {
    font-size: 16px;
}

.filter-wrapper {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-wrapper .pagination_wrapper {
    margin: 0;
    padding-right: 15px;
}

/*.filter-wrapper i{
    margin-right: 10px;
    color: rgba(0,0,0,0.54);
}*/
.table-responsive button {
    outline: 0;
    border: 0;

}

.table-responsive button i {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev_button {
    position: absolute;
    top: 50%;
    width: 3.2rem;
    height: 3.2rem;
    transform: translateY(-50%, -50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
    left: 8px;
}

.nex_button {
    position: absolute;
    top: 50%;
    width: 3.2rem;
    height: 3.2rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    font-size: 0;
    outline: 0;
    right: 8px;
}

/*
###########################################################
  Table END
###########################################################
*/

/*
###########################################################
  ACCORDION START
###########################################################
*/
.accordion-wrapper #accordion-one {
    border-radius: 0;
    position: relative;
    color: rgba(0, 0, 0, 0.87);
    background-color: #fff;
    transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    /*box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);*/

}

.tab-pane {
    /*padding-top: 10px;*/
    padding-top: 0px;
}

.accordion-wrapper #accordion-one .card {
    display: flex;
    /*padding: 0px 24px;*/
    min-height: 48px;
    transition: min-height 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.accordion-wrapper #accordion-one .main-accordion-a {
    /* padding: 15px 0;*/
    background-color: var(--tertiary) !important;
    display: flex;
    flex-grow: 1;
    border: 0;
    transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    align-items: center;
    background: #fff;
    color: rgba(0, 0, 0, 0.54);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-open:checked ~ .section-btn:after {
    /* transform: rotate(0deg);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;*/
    color: rgba(0, 0, 0, 0.54);
    content: ' ';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.54);
    border-top: 0;
    position: absolute;
    right: 12px;
    display: block;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.54);
}

.section-open ~ .section-btn::after {
    /*transform: rotate(180deg);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;*/
    color: rgba(0, 0, 0, 0.54);
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.54);
    position: absolute;
    right: 12px;
    display: block;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.54);
}

.section-open:checked ~ .section-btn:before {
    display: none;
}

.accordion-wrapper #accordion-one .main-accordion-a:before {
    display: none;
}

.section-inner {
    /*padding-top: 20px;*/
}

.tab-content, .dashboard-table-sec {
    /* margin-top: 12px;*/
    margin-top: 0px;
}

.accordion-wrapper .card-body {
    padding: 3px;
}

.floating-label-wrap {
    position: relative;
    /*margin-bottom: 1em;*/
    display: flex;
    align-items: center;

}
.floating-label-wrap > i{
    color: rgba(0, 0, 0, 0.54);
}
.floating-label-wraps {
    position: relative;
    display: flex;
    align-items: center;
    height: 35px;

}

.floating-label-wrap label {
    font-size: 13px;
    color: #a2aabd;
    font-weight: 500;
    position: absolute;
    left: .5em;
    top: .1em;
    transition: all 0.1s linear;
}

.floating-label-wrap input, .floating-label-wrap textarea {
    background-color: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.87);
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    font-size: 14px;
    padding: 1.2em 0.6em 0.2em;
    width: 100%;
    height: 45px;
    outline: none !important;
}
.floating-label-wrap input:required, .floating-label-wrap textarea:required
{
    border-bottom: 2px solid #de7b25;
}

.floating-label-wrap textarea {
    height: 82px;
}

.floating-label-wrap input:focus, .floating-label-wrap textarea:focus {
    outline: none !important;
    border: 0;
    box-shadow: none !important;
    /*border-color: #2088cd;*/
    border-bottom: 2px solid var(--primary);
}

.floating-label-wrap textarea {
    padding: 0.2em 0.6em 0.2em;
    resize: none;
    margin-top: 25px;
    white-space: initial;
}

.floating-label-wrap input:focus, .floating-label-wrap textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--primary);
}

.hamburger-icon {
    font-size: 34px;
    color: var(--primary);
}

.floating-label-wrap textarea:focus {
    padding: 0.2em 0.6em 0.2em;
}

.select-text.blinput:read-only {
    height: 45px;
}

.action-icons i {
    cursor: pointer;
}

.action-icons .clickable i {
    top: 0px;
    right: 20px;
    position: absolute;
    color: gray;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

/*.clickable {
  font-family: OpenSans;
  color: #FFFFFF;
  border-radius: 5px;
  position: relative;
  top: 0px;
  transition: all ease 0.3s;
}*/
.clickable:hover {
    box-shadow: 0 0 7px white;
    cursor: pointer;
}

.floating-label-wrap input:focus + label, .floating-label-wrap input + label.show {
    border-radius: 4px;
    font-size: 11px;
    color: var(--primary);
    left: .5em;
    padding: 0.15em;
    top: -0.5em;
    height: 25px;
    padding-right: 10px;
}
label.field.focused .select-label {
    font-size: 11px !important;
    top: -5px !important;
}
.input-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 1em;
}
.input-wrapper label {
    max-width: calc(100% - 40px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    /*z-index: 1;*/
    width: auto;
    padding-right: 10px;
    color: var(--label_color);
    /*color: rgba(0,0,0,.6);*/
    font-size: 14px;
}

.input-wrapper.form-model label {
    width: auto;
}

.floating-label-wrap .action-icons {
    position: absolute;
    right: 5px;
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.input-wrapper input.blinput {
    width: 100%;
    border-radius: 0;
    padding-right: 2.5rem;
    text-overflow: ellipsis;
}
.label_title{
    display: block;
    color: rgba(0,0,0,.6);
}
/*.input-wrapper label{
    *//*width: 100%;
    height: 100%;*//*
}*/
.input-wrapper label .clickable{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 6px;
    padding-top: 7px;
}
.md-input{
    padding: 12px 16px 14px;
    font-size: 1rem;
    font-weight: 400;
    height: 46px;
    /*border-radius: 4px;*/
}
.md-textarea{
    padding: 12px 16px 14px;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid rgba(0,0,0,.38);
    border-radius: 4px !important;
}
.md-select{
    padding: 12px 16px 14px;
    font-size: 1rem;
    height: 46px;
    font-weight: 400;
    border: 1px solid rgba(0,0,0,.38);
    border-radius: 4px !important;
}
.md-input-dense{
    padding: 12px 16px 14px;
    font-size: 1rem;
    font-weight: 400;
    height: 24px;

    /*border-radius: 4px;*/
}

.md-textarea-dense{
    padding: 12px 16px 14px;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid rgba(0,0,0,.38);
    border-radius: 4px;
}
.text-black{
   color: rgba(0,0,0,.87) !important;
}
.input-wrapper input.noValue + label {
    top: 1em;
}

.input-wrapper input.noValue:focus + label {
    top: -0.5em;
}

.bltooltip {
    padding: 2px 8px;
    font-size: .75rem;
    color: red;
    margin-top: -14px;
    white-space: normal;
    line-height: 1.1;
    max-width: calc(100% - 30px);
    width: auto;
}
.blsubtabletr td .bltooltip{
    margin-top: 0;
}
/*.floating-label-wrap input:valid + label, .floating-label-wrap input + label.show{
    border-radius: 4px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.54);;
    left: .5em;
    padding: 0.15em;
    top: -0.5em;
    height: 50px;
}*/
.floating-label-wrap textarea:focus + label, .floating-label-wrap textarea + label.show {
    border-radius: 4px;
    font-size: 11px;
    color: var(--primary);
    left: .5em;
    padding: 0.15em;
    top: -0.5em;
    height: 25px;
}

.blinput:read-only .blinput:disabled {
    height: 45px;
    background-color: #e9ecef !important;
}

.bladvsearchinput:disabled{
    background-color: #e9ecef;
 }

.blsubtabletr td .floating-label-wrap .input-wrapper{
    margin-bottom: 0 !important;
}
.subtable-sno-align{
    padding: 0px;
    color: white;
    font-family: "Roboto","Helvetica","Arial","sans-serif";
    font-size: 16px;
    margin-top: 3px;
}
.select-text {
    font-size: 14px;
}

#registration-form-sub-one .select-wrapper {
    margin-bottom: 10px;
}

.input-label-flot-left{
    /*left:0px!important;
    text-align: left;*/
}

.interaction-modal-contaienr{
 /*   top:15vh!important;*/
}

.interaction-modal-content{
    max-height: 60vh!important;
    overflow-x: auto;
}


/*
###########################################################
  FORM END
###########################################################
*/

/*
###########################################################
  BUTTON END
###########################################################
*/
.filled-button {
    color: #fff;
    background-color: var(--primary);
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    padding: 6px 16px;
    font-size: 0.875rem;
    min-width: 64px;
    box-sizing: border-box;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    line-height: 1.75;
    border-radius: 4px;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    outline: 0;
    position: relative;
    align-items: center;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.filled-button:hover {
    /*   background-color: rgb(17, 82, 147);
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
    text-decoration: none;*/
}

.filled-button:hover a, .filled-button a {
    /*color: #fff;*/
}

.back-next-new {
    text-align: right;
    margin-right: 15px;
    margin-bottom: 40px;
    padding: 30px 0 30px 20px;
}
a.md-btn{
    margin-bottom: 10px;
}
.md-btn {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    display: inline-block;
    height: 36px;
    min-width: 88px;
    padding: 6px 16px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    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;
    border: 0;
    border-radius: 2px;
    background: var(--secondary);
    color: #fff;
    outline: 0;
    font-weight: 500;
}

.md-btn:focus {
    background: var(--secondary);
}

.md-btn-raised {
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.md-btn-raised:active {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}

/* Ripple */
.md-btn-ripple {
    overflow: hidden;
    position: relative;
}

.md-btn-ripple:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100%;
    transform: scale(0);
}

@keyframes md-btn-ripple {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.md-btn-ripple:hover:after {
    animation: md-btn-ripple 0.6s ease-out;
}

.md-btn-ripple:after {
    visibility: hidden;
}

.md-btn-ripple:focus:after {
    visibility: visible;
}

.md-btn-ripple:hover:after {
    visibility: visible;
}

.outlined-button {
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    display: inline-block;
    height: 36px;
    min-width: 84px;
    padding: 6px 16px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-weight: 600;
    box-sizing: border-box;
    cursor: pointer;
    overflow: hidden;
    outline: none;
}

.outlined-button:moz-focus-inner {
    border: none;
}

.outlined-button::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(33, 150, 243);
    opacity: 0;
    transition: opacity 0.2s;
}

.outlined-button::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    height: 32px;
    background-color: rgb(33, 150, 243);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

.outlined-button:hover {
    border: 1px solid var(--secondary);
    background-color: rgba(25, 118, 210, 0.04);
}

.outlined-button:hover::before {
    opacity: 0.04;
}

.outlined-button:focus::before {
    opacity: 0.12;
}

.outlined-button:hover:focus::before {
    opacity: 0.16;
}

.outlined-button:active::after {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

.outlined-button:disabled {
    color: rgba(0, 0, 0, 0.38);
    background-color: transparent;
    cursor: initial;
}

.outlined-button:disabled::before {
    opacity: 0;
}

.outlined-button:disabled::after {
    opacity: 0;
}
.outlined-button i {
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -1px;
}
.outlined-button.disableFTSaveButton{
    border: 1px solid grey;
    background: none;
    color: grey;
    opacity: .5;
}
.contained-button {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--secondary);
    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);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.contained-button::-moz-focus-inner {
    border: none;
}

/* Overlay */
.contained-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.contained-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px; /* Safari */
    height: 32px; /* Safari */
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.contained-button:hover,
.contained-button:focus {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.contained-button:hover::before {
    opacity: 0.08;
}

.contained-button:focus::before {
    opacity: 0.24;
}

.contained-button:hover:focus::before {
    opacity: 0.3;
}

/* Active */
.contained-button:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.contained-button:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.contained-button:disabled {
    color: rgba(0, 0, 0), 0.38);
    background-color: rgba(0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.contained-button:disabled::before {
    opacity: 0;
}

.contained-button:disabled::after {
    opacity: 0;
}

.contained-button i {
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -4px;
}
.contained-button.disableFTSaveButton{
    background: grey;
    color: white;
    opacity: .5;
}
.text-button {
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 15px 0 15px;
    border: none;
    border-radius: 4px;
    min-width: 64px;
    height: 36px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: var(--secondary);
    background-color: transparent;
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    line-height: 38px;
}
.text-button::-moz-focus-inner {
    border: none;
}
.text-button::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.2s;
}
.text-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px;
    height: 32px;
    background-color: currentColor;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1) ;
    transition: opacity 1s, transform 0.5s;
}
.text-button:hover::before {
    opacity: 0.04;
}
.text-button:focus::before {
    opacity: 0.12;
}
.text-button:hover:focus::before {
    opacity: 0.16;
}
.text-button:active::after {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}
.text-button:disabled {
    color: var(--secondary);
    background-color: transparent;
    opacity: 0.38;
    cursor: initial;
}
.text-button:disabled::before {
    opacity: 0;
}
.text-button:disabled::after {
    opacity: 0;
}
.text-button i {
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -4px;
}
.text-button.disableFTSaveButton{
    color: grey;
    opacity: .5;
}
.custom-file-wrapper {
    margin: 20px 0;
}
.vertical-align-bottom{
    vertical-align: bottom;
}
/*
###########################################################
  BUTTON END
###########################################################
*/
/*
###########################################################
  FLOATING ACTION BUTTON START
###########################################################
*/
.fixed-action-btn {
    position: fixed;
    z-index: 10;
    //height: 180px;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 1px;
    padding: 8px;
    width: 48px;
    border-radius: 4px;
    //height: 146px;
    background-color: #F0FFFF;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.floating-btn {
    /*color: #fff;
    overflow: hidden;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgb(220, 0, 78);
    vertical-align: middle;
    position: relative;
    z-index: 1;
    padding: 0;
    transition: .3s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);*/
}

.fixed-action-btn ul {
    margin: 0;
    text-align: center;
    padding: 0;
}

.fixed-action-btn li {
    margin: 8px 0;
    list-style-type: none;
}

.fixed-action-btn li a {
    border-radius: 6px;
    background-color: transparent;
    display: flex;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.fixed-action-btn li a i {
    color: var(--secondary);
    font-size: 28px;
    width: 100%;
}

.fixed-action-btn a:hover {
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    background-color: white;

}

.fixed-action-btn a:hover i {
    color: var(--secondary);
}

/*
###########################################################
  FLOATING ACTION BUTTON END
###########################################################
*/
/*
###########################################################
  CALENDAR START
###########################################################
*/
#calContainerId {
    /* box-shadow: 0px 5px 5px -3px rgba(0,0,0,0.2), 0px 8px 10px 1px rgba(0,0,0,0.14), 0px 3px 14px 2px rgba(0,0,0,0.12);*/
    border-radius: 4px;
    outline: 0;
    display: flex;
    max-width: 260px;
    /*max-width: 350px;
    min-height: 305px;*/
    overflow-x: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 550;
    padding-bottom: 10px;
}
#calContainerId.aside-formlookup{
    max-width: 260px;
}
#calContainerId .calCell {
    width: 32px;
    height: 32px;
    margin: 0 2px;
    padding: 0;
}

#weekDays .calCell {
    color: rgba(0, 0, 0, 0.38) !important;
    width: 32px;
    margin: 0 2px;
    text-align: center;
    font-size: 0.75rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.66;
    letter-spacing: 0.03333em;
    cursor: text !important;
    padding-top: 5px;
}
#weekDays .calCe {
    color: rgba(0, 0, 0, 0.38) !important;
}
#calContainerId #weekDays .calCell:hover {
    background-color: transparent;

}

.caltd {
    color: rgba(0, 0, 0, 0.87);
    font-weight: 500;
    width: 36px;
    height: 36px;
    border: 0 !important;
    margin: 0 2px;
    padding: 0;
    font-size: 14px;
    flex: 0 0 auto;
    overflow: visible;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    outline: 0;
    position: relative;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    justify-content: center;
    text-decoration: none;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

#calContainerId .calCell:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

#hourId::parent {
    border: none !important;
}

div < #hourId {
    border: none !important;
}

#hourId:checked ~ div {
    border: none !important;
}

#hourId, #monthId, #yearId, #minsId, #secsId  {
    background: #fff;
    padding: 0px;
}

/*
###########################################################
  CALENDAR END
###########################################################
*/
/*
###########################################################
  Modal Start
###########################################################
*/

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border: 0;
    border-top-left-radius: .125rem;
    border-top-right-radius: .125rem;
    padding: 15px 30px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 0;
    padding: 8px;
    background: #fff;
    /*border-top: 1px solid rgba(0,0,0,0.12);*/
}

.modal-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-footer button i {
    margin-left: 10px;
}

.modal-footer-center{
    display: flex;
    justify-content: center!important;
}

.modal-content {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    padding: 0;
}

.blmodal-content {
    padding: 30px 30px 10px 30px;
}

.blwfmodal-pos .blmodal-content{
    overflow-y: scroll !important;
    max-height: 500px !important;
}

.modal-header h5 {
    margin-bottom: 0;
}

.close-button {
    outline: 0;
    background: transparent;
    color: #fff;
    border: 0;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    text-decoration: none;
    width: 34px;
    height: 34px;
}

.close-button:hover {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.calCe {
    border-bottom: 1px solid transparent;
    padding: 0.2em;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 32px;
    cursor: pointer;
    border-left: 1px solid transparent;
    color: black;
}

.search-label {
    height: auto;
    margin-bottom: 0;
}
.dashboard-table-sec .table-responsive > table > thead > tr > th {
    font-size: 15px;
    padding: 6px 24px 6px 16px !important;
}

.main-accordion-body .inside-table {
    margin: 0;
    padding: 0;
}

.main-accordion-body:focus
{
    border: 2px solid var(--focus_color);
}

.material-collapsible-table {
    width: 100%;
    overflow-x: auto;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: #fff;
}

.material-collapsible-table table {
    width: 100%;
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
}

.main-accordion-body .material-collapsible-table table.dataTable thead th {
    border: none;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    font-size: 15px;
}

.material-collapsible-table thead th {
    color: rgba(0, 0, 0, 0.87);
    font-weight: 500;
    line-height: 1.5rem;
    display: table-cell;
    padding: 0px;
    font-size: 16px;
    text-align: left;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    vertical-align: inherit;
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    min-width: 70px;
}

.material-collapsible-table thead th:nth-child(1), .material-collapsible-table thead th:nth-child(2) {
    min-width: 10px;
    /*width: 10px;*/
}

.material-collapsible-table thead th:nth-last-child(1), .material-collapsible-table thead th:nth-last-child(2) {
    min-width: 20px;
    width: 20px;
}

.main-accordion-body table.dataTable.display tbody tr > td {
    font-size: 14px;
}

.main-accordion-body .search-td {
    padding: 0 6px !important;
}

.main-accordion-body .material-collapsible-table td.details-control {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.main-accordion-body .material-collapsible-table td.delete-control {
    width: 20px !important;
    padding: 5px !important;
}

.close-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.close-filter img {
    color: rgba(0, 0, 0, 0.54);
    width: 24px;
}

.close-filter:hover img {
    color: var(--primary);
}

.lookup-icon {
    /*z-index: 1;*/
    font-size: 18px;
    color: rgba(0, 0, 0, 0.54);
}

.clear-icon {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.54);
}

.main-accordion-body .material-collapsible-table td.details-control span {
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.54);
    padding: 3px;
    overflow: visible;
    font-size: 1.5rem;
    text-align: center;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 50%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;

}
.close-record {
    width: 20px !important;
    padding: 10px 5px !important;
    vertical-align: text-top !important;
}

.close-record i {
    color: rgba(0, 0, 0, 0.54);
}

.close-record i:hover {
    color: var(--primary);
}

.main-accordion-body .material-collapsible-table td.details-control span svg {
    fill: currentColor;
    width: 1em;
    height: 1em;
    display: inline-block;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    flex-shrink: 0;
    user-select: none;
}

.main-accordion-body .material-collapsible-table td.details-control:hover span {
    background-color: rgba(0, 0, 0, 0.04);
}

.main-accordion-body tr.shown td.details-control {

}

.main-accordion-body .material-collapsible-table tr.shown {
    border-bottom: none;

}

.main-accordion-body .material-collapsible-table tr.shown .accordion-icon {
    transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}

.main-accordion-body .section-inner {
    padding-top: 0;
}

.action-btn-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.delete-control:hover i {
    color: var(--primary);
}

.col_search {
    padding-top: 0px !important;
    /*height: 1.5rem !important;*/
    border: 0;
    outline: 0;
    border-bottom: 1px solid grey;
    height: 32px;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    width: 100%
}

.col_search:focus {
    box-shadow: none !important;
    outline: 0;
    border: 0;
    border-bottom: 1px solid var(--primary);
}

.ml-floating-btn {
    width: 36px;
    height: 36px;
    display: block;
    padding: 0;
    font-size: 0.875rem;
    min-width: 0;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    min-height: 36px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    line-height: 1.75;
    border-radius: 50%;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    background-color: #63a4ff;
    color: #fff;
    cursor: pointer;
}

.ml-floating-btn:hover {
    background-color: rgb(17, 82, 147);
}

.ml-floating-btn:hover i {
    color: #fff;
}

.main-accordion-body {
    background: #fff;
}

.ml-floating-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 32px;
}

.main-accordion-body .delete-control {
    background-color: #fff;
}

.material-collapsible-table td.details-control:hover::before {
    background-color: rgba(0, 0, 0, 0.04);
}

.material-collapsible-table table tbody tr {
    background-color: #fff;
    /*border-bottom: 1px solid rgba(224, 224, 224, 1);*/
}

.material-collapsible-table .bl_table tbody tr:nth-of-type(odd), .material-collapsible-table .bl_table tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

/*
###########################################################
    BLSUBTABLE END
###########################################################
*/
/*
###########################################################
    Landing Page Table Start
###########################################################
*/
.landing-page-table {
    width: 100%;
    overflow-x: auto;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: #fff;

}

.landing-page-table table {
    width: 100%;
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
}

.landing-page-table thead {
    display: table-header-group;
}

.landing-page-table thead tr {
    color: rgba(0, 0, 0, 0.87);
    display: table-row;
    outline: 0;
    vertical-align: middle;
}

.landing-page-table thead th {
    color: #fff;
    background-color: #4a91a8;
    font-weight: 500;
    line-height: 1.5rem;
    display: table-cell;
    padding: 6px 24px 6px 16px;
    font-size: 16px;
    text-align: left;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}

.landing-page-table tbody {
    display: table-row-group;
}

.landing-page-table tbody tr {
    color: inherit;
    display: table-row;
    outline: 0;
    vertical-align: middle;
}

.landing-page-table tbody td {
    color: rgba(0, 0, 0, 0.87);
    font-size: 16px;
    font-weight: 400;
    padding: 6px 24px 6px 16px;
}

.landing-page-table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.landing-page-table tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
}

/*
###########################################################
    Landing Page Table END
###########################################################
*/
/*
###########################################################
    Lookup Start
###########################################################
*/
.lookup-body {
    /* padding: 0 15px;*/

}
.aside-formlookup .pagination_wrapper{
    margin: 15px;
}
.lookup-content {
    max-width:70vw;
    overflow: auto;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0 24px 0;
    /*min-height: 492px;*/
}
.lookup-content.lookup_without_label{
    min-height: fit-content;
}
.table-wrapper {
    border-radius: 4px;
    margin: 15px 15px 0;
}

.table-wrapper table {
    margin-bottom: 0;
    z-index: 3;
    width: 100%;
}

.table-wrapper tbody tr {
    cursor: pointer;
}

.table-wrapper tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.04) !important;
}

.table-wrapper td {
    font-size: 15px !important;
    /*padding: 8px 16px;*/
}

.close-formlookup {
    position: relative;
    right: 0px;
    top: -11px;
    width: 26px;
    height: 3px;
    opacity: 0.3;
    float: right;
    margin-top: 11px;
    border: 1px solid transparent;
}

.close-formlookup:hover {
    opacity: 1;
}

.close-formlookup:before, .close-formlookup:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: #fff;
    top: 2px;
}

.close-formlookup:before {
    transform: rotate(45deg);
}

.close-formlookup:after {
    transform: rotate(-45deg);
}

.close-lookup {
    position: absolute;
    right: 8px;
    top: 10px;
    width: 34px;
    height: 34px;
    opacity: 0.3;
    float: right;
}

.close-lookup:hover {
    opacity: 1;
    border: 1px solid white;
}

.close-lookup:before, .close-lookup:after {
    position: absolute;
    right: 15px;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: #fff;
    top: 9px;
}

.close-lookup:before {
    transform: rotate(45deg);
}

.close-lookup:after {
    transform: rotate(-45deg);
}

.aside-lookup .pagination_wrapper li, .aside-formlookup .pagination_wrapper li {
    margin: 0;
}

.aside-lookup .pagination_wrapper a, .aside-formlookup .pagination_wrapper a {
    margin: 0;
    border: 0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 20px;
}
.paginate_button.not-allowed{
    opacity: 0.38;
    cursor: not-allowed;
}

.aside-lookup .pagination_wrapper .ul-pagintaion li .first, .aside-formlookup .pagination_wrapper .ul-pagintaion li .first {
    margin-right: 20px;
}

.aside-lookup .pagination_wrapper .ul-pagintaion li .first:after, .aside-formlookup .pagination_wrapper .ul-pagintaion li .first:after {
    content: '...';
    left: 26px;
    margin: 0 10px;
}

.bladvsearchlookupimgover {
    width: 20px;
    position: absolute;
    padding: 1px 3px 3px;
    right: 15%;
    top: 53%;
    text-overflow: ellipsis;
}

/*
###########################################################
    Lookup END
###########################################################
*/

/*
###########################################################
    Stcol Search Start
###########################################################
*/
.div_col_search
{
    display: flex;
    align-items: center;
}
.div_col_search_td {
    padding-bottom: 0px !important;
    overflow: visible;
}

.div_col_search input {
    border-bottom: none !important;
    padding: 0;
    height: 34px;
    border-bottom: 0;
    text-overflow: ellipsis;
}
.overflow-x-hidden{
    overflow-x: hidden !important;
}
.div_col_search select {
    padding: 0;
    height: 34px;
    text-overflow: ellipsis;
    min-width: 100px;
}

.div_col_search .aside-formlookup {
    min-width: 280px;
}

.bllookupimgover-search {
    width: 20px;
    position: absolute;
    padding: 1px 3px 3px;
    right: 16px;
    top: 7px;
}

.bllookuptr {
    text-align: left;
}

.bllookuptr:hover {
    /*background-color:#f5f5f5 !important;*/
    background-color: var(--secondary) !important;
    color: white !important;
   /* font-weight: bold;
   background-color: rgba(0,0,0,.04);*/
   cursor: pointer;
}
tr.bllookuptr:nth-of-type(odd):hover {
    /*background-color: var(--secondary) !important;*/
}
.bllookuptr:hover td{
   /* color: white !important;*/
}
.active-bllookuptr {
    background-color: var(--secondary) !important;
    color: white !important;
    font-weight: bold;
}

.active-navigate {
    background-color: var(--secondary) !important;
    color: white !important;
    font-weight: bold;
}

.active-menu-li {
    background-color: var(--secondary) !important;
    color: white !important;
}

/*
###########################################################
    Stcol Start END
###########################################################
*/
/*
###########################################################
    Form Lookup Start
###########################################################
*/
.aside-lookup {
    padding: 0;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px;
    width: 28rem;
    border-radius: 4px;
}

.lookup-header {
    margin: 0px;
    padding: 24px 24px;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    align-items: center;
}

.lookup-header h5 {
    margin-bottom: 0;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.0075em;
    color: rgba(0, 0, 0, 0.87);
}
.lookup-header a , .lookup-header a:hover{
    color: rgba(0, 0, 0, 0.87);
}
.blformlookup {
    position: relative;
    min-height: 43px;
}

.aside-formlookup {
    padding: 0;
    min-width: 300px;
    position: fixed !important;
    max-width: max-content;
    width: 100%;
    min-height: max-content;
        height: fit-content;
}

.aside-formlookup:focus {
    border: 0px !important;
}

.close-formlookup {
    position: absolute;
    right: 16px;
    top: -6px;
    width: 34px;
    height: 34px;
    opacity: 0.3;
    float: right;
    padding: 0 10px;
}

.close-formlookup:hover {
    opacity: 1;
    top: -6px;
    border: 1px solid white;
    cursor: pointer;
}

.close-formlookup:before, .close-formlookup:after {
    position: absolute;
    right: 16px;
    content: ' ';
    height: 15px;
    width: 2px;
    background-color: #fff;
    top: 9px;
}

.close-formlookup:before {
    transform: rotate(45deg);
}

.close-formlookup:after {
    transform: rotate(-45deg);
}

.blformlookup-header {
    cursor: default;
    background: #fff !important;
    color: rgba(0, 0, 0, 0.54);
    text-align: left;
    color: white !important;
}

.search_lookup {
    padding: 6px 16px;
}

.table-wrapper tbody tr {
    border-bottom: 0 !important;
}

.blformlookup-header td {
    padding: 6px 16px !important;
    border: none;
    border-bottom: 1px solid rgba(224, 224, 224, 1) !important;
    font-size: 15px;
    font-weight: 500;

    color: #292f4b;
}

.formlookupoverflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px !important;
    padding: 6px 16px;
}

/*
###########################################################
    Form Lookup END
###########################################################
*/


/*
###########################################################
   Select Start
###########################################################
*/

label.field {
    border-radius: 2px;
    display: block;
    width: 100%;
    padding: 6px 0 0 0;
    opacity: 0;
    position: relative;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    font-size: 14px;
    color: var(--label_color);
    font-weight: 500;
    margin-bottom: 0em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}

label.field span {
    color: inherit;
    display: block;
    font-size: 13px;
    font-weight: 500;
    height: 20px;
    line-height: 20px;
    left: 0;
    letter-spacing: 0.7px;
    pointer-events: none;
    position: absolute;
    top: 18px;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transition-property: color, font-size, top;
    transition-property: color, font-size, top;
    z-index: 0;
}

label.field span.required::after {
    color: inherit;
    content: "*";
    display: block;
    height: 20px;
    left: -20px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 20px;
}

.error label.field span {
    color: #F02318;
}

.bldropdown label.field .psuedo_select {
    min-width: 130px;
    border-bottom: 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    line-height: 1.75;
}

.bldropdown .select-label {
    font-size: 13px;
    top: 17px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    line-height: 1.75;
}

.bldropdown [data-value="undefined"] .select-label {
    color: #fff;
}

label.field .psuedo_select {
    background: rgba(255, 255, 255, 0);
    position: relative;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    margin: 20px 0 0 0;
    /*min-width: 250px;*/
    padding-top: 20px;
    outline: 0;
}

label.field .psuedo_select::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    content: '';
    height: 0;
    width: 0;
    color: rgba(0, 0, 0, 0.54);
    position: absolute;
    top: 20%;
    right: 8px;
    -webkit-transition-property: background;
    transition-property: background;
}

label.field .psuedo_select .selected {
    height: 20px;
    left: 7px;
    line-height: 20px;
    opacity: 0;
    position: absolute;
    top: -3px;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    will-change: transform;
    color: rgba(0, 0, 0, 0.87);
    font-size: 15px;
}

label.field .psuedo_select ul {
    background: #fff;
    box-shadow: 0 3px 10px #adadad;
    display: block;
    height: auto;
    list-style: none;
    margin-top: 2px;
    opacity: 0;
    overflow: hidden;
    padding: 8px 0;
    pointer-events: none;
    -webkit-transition-property: height, opacity;
    transition-property: height, opacity;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 5;
    user-select: none;
    /*transition: 0.25s ease;*/
    text-align: left;
}
label.field.focused{
    height: auto !important;
}
label.field .psuedo_select ul li {
    line-height: 1.5;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 14px;
}

label.field .psuedo_select ul li:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
.clear-ext-btn{
    font-size: 14px;
    color: var(--quaternary);
    width: 1em !important;
    height: 1em;
    padding: 12px;
}
label.field .deselect {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: -1;
}

label.field.focused {
    color: var(--primary);
}

label.field.focused .psuedo_select {
    border-color: var(--primary);
}

label.field.focused .psuedo_select::after {
    background: url("data:image/svg+xml;utf8,<svg fill='#007BED' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
}

label.field.focused .psuedo_select ul {
    opacity: 1;
    pointer-events: all;
}

/*
###########################################################
   Select End
###########################################################
*/
/*
###########################################################
   Confirmation Modal Start
###########################################################
*/
.conmodal-body {
    text-align: center;
    margin: 10px;
    font-size: 18px;
}

.conmodal-body .button-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 5px 15px;
}

.blmodal-content .button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 20px;
}

.blmodal-wrapper {
    z-index: 2;
    transition: top 0.8s ease 0.2s, box-shadow 0.5s ease;
    box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.14), 0 16px 24px 2px rgba(0, 0, 0, 0.098), 0 6px 30px 5px rgba(0, 0, 0, 0.084);
}

/*
###########################################################
   Conformation Modal End
###########################################################
*/
/*
###########################################################
   Expandable div Start
###########################################################
*/
.c-expandable {
    position: relative;
    overflow: hidden;
    max-height: 250px;
    transition: max-height 1s;
    -webkit-transition: max-height 1s;
}

.c-expandable .icon-open {
    opacity: 1;

}

.c-expandable .icon-close {
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.c-expandable__body {
    padding-bottom: 60px;
}

.c-expandable.is-expanded .icon-open {
    opacity: 1;
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.c-expandable.is-expanded .icon-close {
    opacity: 1;

}

.c-expandable__trigger {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 10px 0;
}

.c-expandable:not(.is-expanded)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), #fff);

}

/*
###########################################################
   Expandable div End
###########################################################
*/
/*
###########################################################
   Login Start
###########################################################
*/
.login-error {
    font-size: 1vw;
    color: red;
    position: relative;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 36%;
    color: #0000009c;
    font-size: 22px !important;
}

.login-button {
    border-radius: 5px;
    box-shadow: 0 3px 4px #8abfff;
    background-image: linear-gradient(to right, #7bc3f6, #3946a1, #7bc3f6);
    background-size: 200%;
    width: 250px;
    border: none;
    outline: none;
    transition: .3s ease-in-out;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-button:hover {
    background-position: right;
}

.login-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
}

.login-btn-wrapper a {
    font-size: 18px;
    cursor: pointer;
    color: #7bc3f6;
    padding-top: 20px;

}

.login-form label {
    padding-left: 1.4em;
}

.login-form i {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.login-form .floating-label-wrap input:focus {
    border-bottom: 2px solid var(--primary);
}

.login-form .floating-label-wrap input:focus + label, .login-form .floating-label-wrap input + label.show {

    left: 1.8em;
    padding: 0.15em;
    top: -0.5em;
    height: 25px;
}

.gradient-title {
    color: transparent;
    font-weight: bold;
    background-image: linear-gradient(to right, #7ba6f6, #3969a1);
    text-align: center;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 60px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    background-color: antiquewhite;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    -webkit-text-fill-color: black;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group.label-floating input.form-control:-webkit-autofill ~ label.control-label {
    top: -30px;
    left: 0;
    font-size: 12px;
    line-height: 1.07142857;
}

.iportman-logo2 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.iportman-logo2 img{
    width: 100%;
}

.login-box-layout {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 30px #03030329;
    border: 2px solid #0072BC;
    opacity: 1;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.login-box-layout .row {
    margin-right: -45px;
}

.loginaccount-icon {
    background: transparent url('/pos/web/assets/img/app/navigation/account.svg') 0% 0% no-repeat padding-box;
    left: 10px;
    top: 20px;
    position: absolute;
    width: 18px;
    height: 16px;
    fill: red;
}

.loginpwd-icon {
    background: transparent url('/pos/web/assets/img/app/navigation/password.svg') 0% 0% no-repeat padding-box;
    left: 10px;
    top: 17px;
    position: absolute;
    width: 18px;
    height: 16px;
}

.login100-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login100-form-title {
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: bolder;
}

.login100-form-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.login100-form-avatar img {
    width: 100%;
}

.login100-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login100-form-title {
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: bolder;
}

.login100-form-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.login100-form-avatar img {
    width: 100%;
}

.limiter {
    width: 102%;
    margin: 0 auto;
    position: relative;
}

.container-login100 {
    width: 70%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    float: right;
}

.container-login100::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0.9;
}

.wrap-login100 {
    width: 390px;
    background: transparent;
}

.login-box-layout {
    width: 40%;
}

.login-box-layout {
    height: auto;
    border: 3px solid var(--primary);
}

.container-login100-form-btn {
    margin-top: 15px;
}

.container-login100 {
    width: 95%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    float: right;
}

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.container-login100-form-btn a {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.wrap-login100 {
    width: 390px;
    background: transparent;
}

.login100-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login100-form-title {
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    font-weight: bolder;
}

.wrap-input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 15px;
}

.validate-input {
    position: relative;
}

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.container-login100-form-btn a {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.input100 {
    font-size: 15px;
    line-height: 1.2;
    color: #333333;
    display: block;
    width: 100%;
    background-color: white;
    height: 36px;
    border-radius: 5px;
    padding: 0 30px 0 53px;
    margin-top: 10px;
    border: transparent;
}

.login100-form-btn {
    background: #71C5FC 0% 0% no-repeat padding-box;
    border-radius: 8px;
    width: 100%;
    height: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    border: none;
}

.loginpage-bottomLabel a, .loginpage-bottomLabel-1 a {
    color: white;
    font-size: 15px;
    display: block;
    margin-top: 5px;
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-color: rgb(232, 240, 254) !important;
    background-image: none !important;
    color: -internal-light-dark(black, white) !important;
}

.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.register-wrapper a {
    margin-right: 5px;
}

.register-now {
    background: #0072BC 100% 100% no-repeat padding-box;
    border: 1px solid #0072BC;
    border-radius: 16px;
    font-size: 14px;
    color: #fff;
    padding: 5px 12px;
}

.register-now:hover {
    color: #fff;
}

.not-registered:hover {
    color: #fff;
}

.not-registered {
    font-size: 14px;
    color: #fff;
}

/*
###########################################################
   Login End
###########################################################
*/
/*
###########################################################
   Toast Start
###########################################################
*/
.toasted {
    color: #fff;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12) !important;
    border-radius: 4px !important;
    margin: 10px auto !important;
}

.toasted i {
    font-size: 24px;
}

.toasted.toast-msg.outline.warning{
   color: orange;
   border: 1px solid orange;
}

.toast-fullscreen-container {
    display: none;
    position: fixed;
    top: 0 !important;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 13, 13, 0.5);
    width: 100%;
}

.toast-msg {
    width: max-content !important;
    margin-left: 30%;
    max-width: 45% !important;
    display: inline-block;
    word-break: break-all !important;
}

/*
###########################################################
   Toast End
###########################################################
*/
/*
###########################################################
   Chat Start
###########################################################
*/
#chat-trigger {
    display: none;
}

#chat-trigger:checked ~ .chat-box {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
    transition-delay: .5s;
}

#chat-trigger:checked ~ .chat-box .chat-header-icon {
    width: 300px;
    border-radius: 0;
    box-shadow: 0 0 0 0 transparent;
    transition: .5s border-radius ease-in-out 0s,
    .5s width ease-in-out 0s,
    .5s box-shadow ease-in-out .5s;
}

#chat-trigger:checked ~ .chat-box .chat-header-icon .close-icon {
    opacity: 1;
    transition: .5s opacity ease-in-out .5s, .25s color ease-in-out 0s;
}

#chat-trigger:checked ~ .chat-box .chat-header-icon .user-name {
    left: 0;
    opacity: 1;
    transition: .5s left ease-in-out .5s, .5s opacity ease-in-out .65s;
}

#chat-trigger:checked ~ .chat-box .chat-area {
    height: 300px;
    width: 300px;
    transition: .5s height ease-in-out .5s,
    .5s width linear 0s;
}

#chat-trigger:checked ~ .chat-box .chat-area .chat-content {
    width: 300px;
    transition: 0s width .5s,
    .25s left ease-in-out;
}

#chat-trigger:checked ~ .chat-box .chat-area .chat-buttons {
    width: 300px;
    transition: 0s width .5s;
}

#chat-trigger:checked ~ .chat-box .quote-icon-close {
    left: -50px;
    opacity: 1;
    box-shadow: 0px 4px 10px -3px rgba(0, 0, 0, 0.75);
    transition: .25s background-color ease-in-out 0s,
    .5s box-shadow ease-in 0s,
    0s opacity ease-in 0s,
    .5s left ease-in 0s;
}

.chat-box {
    position: absolute;
    right: 20px;
    bottom: 20px;
    box-shadow: 0 0 0 0 transparent;
    transition: .5s box-shadow ease-in-out;
    transition-delay: 0s;
}

.chat-box .chat-header-icon {
    position: relative;
    display: block;
    height: 40px;
    width: 40px;
    overflow-x: hidden;
    background-color: var(--primary);
    color: #d2ebde;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 4px 10px -3px rgba(0, 0, 0, 0.75);
    transition: .5s border-radius ease-in-out .5s,
    .5s width ease-in-out .5s,
    .5s box-shadow ease-in-out 0s;
}

.chat-header-icon h5 {
    margin-bottom: 0;
    padding-left: 10px;
}

.chat-box .chat-header-icon .close-icon {
    margin-bottom: 0;
    width: 40px;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    opacity: 0;
    transition: .5s opacity ease-in-out 0s,
    .25s color ease-in-out 0s;
}

.chat-box .chat-header-icon .close-icon:hover {
    cursor: pointer;
    color: #fff;
}

.chat-box .chat-header-icon .close-icon .user-name {
    position: absolute;
    top: 0;
    left: -125px;
    bottom: 0;
    padding-left: 10px;
    min-width: 40px;
    color: #d2ebde;
    font-size: 13px;
    line-height: 40px;
    opacity: 0;
    transition: .5s left ease-in-out .15s,
    .5s opacity ease-in-out 0s;
}

.chat-box .chat-area {
    display: block;
    position: relative;
    overflow: hidden;
    width: 0%;
    height: 0px;
    background: #fff;
    border-bottom: 0px solid transparent;
    transition: .4s height ease-in-out 0s,
    .5s width linear .5s;
}

.chat-box .chat-area [name='chat-switch'] {
    display: none;
}

.chat-box .chat-area #contacts:checked ~ .chat-content .scroll-container {
    left: 0%;
}

.chat-box .chat-area #contacts:checked ~ .chat-buttons .contacts:hover {
    background-color: #fff;
}

.chat-box .chat-area #contacts:checked ~ .chat-buttons .contacts i {
    background-position: -80px 1px;
}

.chat-box .chat-area #contacts:checked ~ .chat-buttons .active-line {
    left: 0;
}

.chat-box .chat-area #conversations:checked ~ .chat-content .scroll-container {
    left: -100%;
}

.chat-box .chat-area #conversations:checked ~ .chat-buttons .conversations:hover {
    background-color: #fff;
}

.chat-box .chat-area #conversations:checked ~ .chat-buttons .conversations i {
    background-position: -40px 1px;
}

.chat-box .chat-area #conversations:checked ~ .chat-buttons .active-line {
    left: 33.3333%;
}

.chat-box .chat-area #calls:checked ~ .chat-content .scroll-container {
    left: -200%;
}

.chat-box .chat-area #calls:checked ~ .chat-buttons .calls:hover {
    background-color: #fff;
}

.chat-box .chat-area #calls:checked ~ .chat-buttons .calls i {
    background-position: -120px 1px;
}

.chat-box .chat-area #calls:checked ~ .chat-buttons .active-line {
    left: 66.6667%;
}

.chat-box .chat-area .chat-content {
    position: relative;
    left: 0%;
    width: 0;
    height: 259px;
    overflow: hidden;
    transition: 0s width linear .5s, .25s left ease-in-out;
}

.chat-box .chat-area .chat-content .scroll-container {
    position: relative;
    width: 300%;
    height: 100%;
    transition: .25s left ease-in-out;
}

.chat-box .chat-area .chat-content .contact-content {
    float: left;
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}

.chat-box .chat-area .chat-content .contact-content .overflow {
    width: 100%;
    height: 125%;
}

.chat-box .chat-area .chat-content .conversation-content {
    float: left;
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}

.chat-box .chat-area .chat-content .conversation-content .nameMsg {
    display: inline-block;
    vertical-align: middle;
    width: 110px;
}

.chat-box .chat-area .chat-content .conversation-content .nameMsg .name, .chat-box .chat-area .chat-content .conversation-content .nameMsg.msg {
    display: block;
}

.chat-box .chat-area .chat-content .conversation-content .nameMsg .name {
    margin-bottom: 5px;
}

.chat-box .chat-area .chat-content .conversation-content .nameMsg .msg {
    font-size: 11px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-box .chat-area .chat-content .conversation-content .time {
    display: inline-block;
    width: 67px;
    text-align: right;
    color: #404040;
    font-size: 12px;
}

.chat-box .chat-area .chat-content .calls-content {
    float: left;
    width: 300px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}

.chat-box .chat-area .chat-content .calls-content .namePhone {
    display: inline-block;
    vertical-align: middle;
}

.chat-box .chat-area .chat-content .calls-content .namePhone .name {
    display: block;
    margin-bottom: 5px;
}

.chat-box .chat-area .chat-content .calls-content .namePhone .tel {
    display: block;
    color: #fff;
    font-size: 10px;
}

.chat-box .chat-area .chat-content .user {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    transition: .5s background-color ease-in-out;
    display: flex;
    align-items: center;
}

.chat-box .chat-area .chat-content .user i {
    margin-right: 10px;
}

.chat-box .chat-area .chat-content .user .icon {
    display: inline-block;
    height: 40px;
    width: 40px;
    vertical-align: middle;
    margin-right: 5px;
    background-position: 0 0;
}

.chat-box .chat-area .chat-content .user .name {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    margin-bottom: 0;
    color: #404040;
}

.chat-box .chat-area .chat-content .user:hover {
    cursor: pointer;
    background-color: #f2f2f2;
}

.chat-box .chat-area .chat-buttons {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 41px;
    border-top: 1px solid #ebebeb;
    transition: 0s width linear .5s;
}

.chat-box .chat-area .chat-buttons label {
    float: left;
    width: 33.3333%;
    background-color: #fff;
    transition: .5s background-color ease-in-out;
}

.chat-box .chat-area .chat-buttons label:hover {
    background-color: #f2f2f2;
    cursor: pointer;
}

.chat-box .chat-area .chat-buttons .contacts i {

    display: block;
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
    content: '/E7FB';
    font-family: "Material Icons"
}

.chat-box .chat-area .chat-buttons .conversations i {
    display: block;
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
    content: '/E0B7';
    font-family: "Material Icons";
}

.chat-box .chat-area .chat-buttons .calls i {
    display: block;
    font-size: 30px;
    text-align: center;
    margin: 0 auto;
    content: "/E0B0";
    font-family: "Material Icons";
}

.chat-box .chat-area .chat-buttons .active-line {
    position: absolute;
    bottom: 0;
    height: 5px;
    width: 33.3333%;
    background-color: var(--primary);
    transition: .25s left ease-in-out;
}

.chat-box .chat-area .chat-buttons .clear {
    clear: both;
}

.chat-box .quote-icon-close {
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    border-radius: 20px;
    content: '/E0CA';
    display: block;
    font-family: "Material Icons";
    color: #fff;
    margin-bottom: 0;
    box-shadow: 0 0 0 0 transparent;
    transition: .25s background-color ease-in-out 0s,
    .5s box-shadow ease-out 0s,
    .4s left linear .4s;
}

.chat-box .quote-icon-close:hover {
    cursor: pointer;
}

.chat-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
    z-index: 5;
    cursor: pointer;
}

.chat-button i {
    line-height: 60px;
}


/*
###########################################################
   Chat End
###########################################################
*/

.dropdown-menu li .dropdown-item i {
    margin-right: 5px;
}

.dropdown-submenu span {
    margin-right: 10px;
}

.dropdown-item.menu-flex {
    /*display: flex;*/
}

.menu-flex span {
    padding-left: 5px;
}

.menuDropdownIcon {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 7px 0 7px 7px;
    border-left-color: #ccc;
    margin-top: 10px;
    margin-right: -6px;
}

.autocomplete-items-index-file div {
    padding: 10px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.87);
    border-bottom: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.autocomplete-items-index-file {
    border: 0;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}


/*
###########################################################
   Ripple Start
###########################################################
*/


[ripple] {
    position: relative;
    overflow: hidden;
}

[ripple] .ripple--container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

[ripple] .ripple--container span {
    transform: scale(0);
    border-radius: 100%;
    position: absolute;
    opacity: 0.75;
    background-color: rgba(33, 150, 243, 0.5);
    animation: ripple 1000ms;
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(2);
    }
}


/*
###########################################################
   Ripple End
###########################################################
*/

.menuDropdownIcon {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 10px;
    margin-right: -6px;
}

.dropdown-submenu {
    position: relative;
}


.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-menu.third-level {
    max-height: 315px;
    overflow-y: auto;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: white !important;
    text-decoration: none;
    background-color: var(--secondary);
}


.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
}

.menu-wrapper {
    position: absolute;
}

.menu ul {
    width: max-content;
    max-height: 300px;
    overflow-y: auto;
}

.menu li {
    position: static;
}

li .menu-wrapper {
    position: absolute;
    z-index: 10;
    display: none;
}

li:hover > .menu-wrapper {
    display: block;
}

.menu ul {
    color: black;
    font-family: sans-serif;
    font-size: 16px;
    padding-left: 0px !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}

.dropdown-item, .dropdown-item span {
    font-size: 14px;
}

.menu li {
    padding: 0.1rem;
    font-family:"Roboto", "Helvetica", "Arial", sans-serif;
    font-size:15px;
}

.menu li ul {
    margin: 0;
}

.target {
    display: none;
}


/*
###########################################################
   Autocomplete Start
###########################################################
*/

.autocomplete-dropdown {
    width: 300px;
}

ul.options-list li.selected {
    background-color: #2196f3;
    color: #fff;
}

input.input-dropdown {
    height: 40px;
    width: 100%;
    border: 1px solid #2196f3;
    border-radius: 2px 0 0 2px;
    background-color: #2196f3;
    color: #fff;
    font-size: 16px;
    padding-right: 38px;
    padding-left: 8px;
}

input.input-dropdown::-webkit-input-placeholder {
    color: #fff;
}

p.control {
    position: relative;
    display: flex;
    margin-bottom: 0.1rem;
    box-shadow: 0px 1px 5px 1px rgba(119, 119, 119, 0.53);
    z-index: 10;
}

p.control i {
    width: 70px;
    top: 0;
    border: none;
    right: 0;
    color: #fff;
    background: #2196f3;
    box-shadow: -2px 0px 1px #1b7bc7;
    border-radius: 0 2px 2px 0;
}

ul.options-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 1px solid #dbdbdb;
    border-radius: 0 0 3px 3px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0px 3px 6px 0px rgba(195, 195, 195, 0.76);
}

ul.options-list li {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    padding: 0.4rem;
    border-bottom: 1px solid #eee;
    color: #666;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s all ease;
}

.icon-right i {
    transition: 0.3s all ease;
}

.icon-right i:hover,
i.chevron.bottom.chevron-active {
    box-shadow: 0 0 6px #1b7bc7;
    background-color: #38a2f7;
}

ul.options-list li span {
    margin-right: 4px;
}

.chevron:before {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: "";
    display: inline-block;
    height: 0.45em;
    left: 0.05em;
    position: relative;
    top: 0.15em;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 0.45em;
    transition: 0.3s all ease;
    will-change: transform;
}

.chevron.bottom:before {
    top: 16px;
    left: 19px;
}

.chevron-active.bottom:before {
    transform: rotate(135deg);
    will-change: transform;
}

.chevron-inactive.bottom:before {
    transform: rotate(225deg);
    will-change: transform;
}

ul.options-list li:last-child {
    border-bottom: none;
}

.fade-enter-active,
.fade-leave-active {
    transition: all 0.3s ease;
}

.fade-enter,
.fade-leave-active {
    opacity: 0;
    will-change: opacity;
    transform: translateY(-30px);
}

/*
###########################################################
   Autocomplete End
###########################################################
*/


.search-select {
    position: relative;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
}

.search-select-search {
    background-color: #fff;
    border: 2px solid #121e49;
    border-radius: 1rem;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    padding: 0.5rem 0.75rem;
    position: relative;
    width: 100%;
    z-index: 1;
}

.search-select-search:focus {
    color: #121e49;
    cursor: text;
    outline: 0;
}

.search-select-icon {
    box-sizing: content-box;
    cursor: pointer;
    fill: #121e49;
    padding: 0.85rem 0.6rem;
    position: absolute;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    top: 0;
    right: 0;
    stroke: #121e49;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1;
    z-index: 1;
}

.search-select-icon.open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-select-dropdown {
    background-color: #fff;
    border: 2px solid #121e49;
    border-radius: 1rem 1rem 0.25rem 0.25rem;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 2rem 0 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.search-select-options {
    list-style: none;
    margin: 0;
    max-height: 14rem;
    padding: 0;
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.search-select-option {
    padding: 0.5rem 0.75rem;
    color: #121e49;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.search-select-option.is-active,
.search-select-option.is-active:hover {
    background-color: #eeedf1;
}

.search-select-option.is-active:active {
    background-color: #1f1a5e;
    color: #fff;
}

.search-select-empty {
    padding: 0.5rem 0.75rem;
    color: #b8c2cc;
}


/*
###########################################################
   Section tabs Start
###########################################################
*/


.section-list {

    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #fff;
    border-radius: 0.25rem;
    margin-top: 5px;
    margin-bottom: 10px;

    /*
margin: 0rem 0.4rem;
padding-left: 0;
border: 1px solid #ececec;
border-radius: 3px;
user-select: none;
box-shadow: 0 1.6px 3.6px 0 rgba(0,0,0,0.132), 0 0.3px 0.9px 0 rgba(0,0,0,0.108);*/
}

.section-open {
    display: none;
}

.section-panel {
    visibility: hidden;
    max-height: 0;
    /* opacity: 0;
   transition: max-height .1s,
   visibility .3s,
   opacity .3s;*/
    /*margin-right:1%;*/
    opacity: 0;
    transition: max-height 0s, visible 1s, opacity 1s ease-out;
    border-radius: 3px;
    /*background-color: rgba(211, 211, 211, 0.05);*/
    /*background-color: #f9f9f9;*/

}

.section-open:checked ~ .section-panel {
    max-height: 100%;
    transition: max-height 1s, visible .25s, opacity .25s ease-in;
    opacity: 100;
    visibility: visible;
    /*padding-top: 0.5rem;*/

}

.section-btn {


    padding: 0.35rem 1.25rem;
    margin-bottom: 0;
    background-color: #ebeef5;
    border-bottom: 1px solid #e0e0e0;
    /*  *//*border: 1px solid #e0e0e0;*//*
    cursor: pointer;
    display: block;
    padding: 0.15rem 0.6rem;
    margin-bottom: 0;
    *//*background-color: #284a5d96;*//*
    *//*background-color: #e1e1e1; #5e6c7ba1*//*
    background-color: #47648296;
    background-color: #284a5d96;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    transition: background-color .2s ease;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: 1px solid #d8d4d4;*/
}

.section-btn:hover {
    /* background: rgba(71, 100, 130, 0.26);
   color: rgba(0, 0, 0, 0.71);*/
    /*border-bottom: 1px solid #ababab;*/
}

.section-open ~ .section-btn:before {
    content: "â®Ÿ";
    /* background-image:url('/portal/web/assets/img/app/actions/common/down-arrow.png');
   background-position:center;
   background-size:100% 100%;
   background-repeat:no-repeat;*/
    float: right;
}

.section-open:checked ~ .section-btn:before {
    content: "â®";
    /*background-image:url('/portal/web/assets/img/app/actions/common/up-arrow.png');
 background-position:center;
 background-size:100% 100%;
 background-repeat:no-repeat;
 float:right;*/
}

.section-list .section-inner {
    /* padding: 20px 10px;*/
}

.section-list .section-inner {
    padding-top: 1px !important;
    padding: 1rem 0.8rem;
}

.section-list:focus{
    border: 2px solid var(--focus_color);
}

.sectionactive {
    text-align: left;
    letter-spacing: 0px;
    color: var(--primary) !important;
    opacity: 1;
    font-weight: 500;
    box-shadow: red 0px -3px 0px inset;
}

.section-nav-link {
    font-weight: 500;
    font-size: 1.02rem;
    /*line-height: initial;*/
    /*padding: 0.5rem 1rem 0.4rem;*/
    padding: 2px;
    height: 100%;
    color: #A0A0A0;
}

.section-nav-link:hover {
    cursor: pointer;
    /*border-bottom: 4px solid lightblue !important;*/
    box-shadow: inset 0 -3px 0 red;
    border-radius: 0px !important;
}

.nav-section {
    margin-top: 15px;
}

.sticky {
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px rgba(0, 0, 0, 0.14), 0 1px 10px rgba(0, 0, 0, 0.12);
    padding: 15px 0 18px;
}

.extend-icon {
    transform: rotate(90deg);
}

/*
###########################################################
    Section Tabs END
###########################################################
*/
/*
###########################################################
    Tree Menu Start
###########################################################
*/

.tree {
    padding: 10px;
}

.tree .fa {
    font-weight: 500;
}

.tree ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    color: #444;
    letter-spacing: .2rem;
    font-size: 16px;
    perspective: 300px;
    perspective-origin: left;
    padding-top: 0;
}

.folder > li > span {
    cursor: pointer;
    font-weight: 500;
}

.sidebar-button {
    background: var(--primary);
    border: none;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    width: 32px;
    height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-button i {
    color: #fff;
    margin: 0;
}

.contents {
    padding-left: 20px !important;
}

.contents > li {
    position: relative;
    padding: 8px;
    cursor: pointer;
}

.contents > li:before {
    position: absolute;
    left: -10px;
    display: inline-block;
    width: 2px;
    height: 100%;
    content: "";
    background-color: #dedede;
}

.contents > li:after {
    position: absolute;
    left: -9px;
    display: inline-block;
    top: 20px;
    width: 16px;
    height: 2px;
    content: "";
    background-color: #dedede;
}

.contents > li > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.user-group-form.tree ul {
    margin-left: 8px;
}

.sub-user-group.contents > li :after {
    width: 22px;
}

.sub-user-group.contents > li .material-checkbox > span::after{
    width: 14px;
    top: 5px;
    left: 0px;
}
.user-group-form .child-tree{
    padding: 0px;
}

.folder > li > a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

ul.folder {
    position: relative;
}

.fade-enter-active,
.fade-leave-active {
    transition: all .2s ease-out;
    overflow: hidden;
}

.fade-enter {
    transform: translateZ(100px);
    opacity: 0;
}

.fade-leave-to {
    transform: translateZ(-100px);
    opacity: 0;
}

.folder > li > span::before,
.contents > li > span::before {
    margin-right: 5px;
}

.folder > li > span::before {
    color: rgba(0, 0, 0, 0.54);
}

/*.contents>li>span::before {
  color: #dedede;
}*/
.child-tree-1.close {
    float: none;
    font-weight: 500;
    opacity: none;
    font-size: 18px;
}

.folder > li > span.closed::before {
    content: "\E146";
    font-family: "Material Icons";
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
}

.folder > li > span.open::before {
    content: "\E909";
    font-family: "Material Icons";
    font-weight: 600;
    font-size: 18px;
    vertical-align: middle;
}

.contents > li:last-child::before {
    height: 13px;
}

.sub-user-group.contents > li:last-child::before {
    height: 22px;
}

.contents > li:last-child span::before {
    /*  margin-left: 0;*/
}

.contents > li > span::before {
    content: "\E835";
    font-family: "Material Icons";
    font-size: 18px;
    vertical-align: middle;
    margin-left: 10px;
}


.material-icons .open {
    content: "\E909";
    font-family: "Material Icons";
    font-weight: 600;
    font-size: 18px;
    vertical-align: middle;
}

.material-icons:hover {
    cursor: pointer;
}

.child-tree.unchecked::before {
    content: "\E835";
    font-family: "Material Icons";
    font-size: 18px;
    vertical-align: middle;
    /* margin-left: 10px;*/
    padding-right: 5px;
}

.child-tree.checked::before, .child-tree-1 .selected::before {
    content: "\E047";
    font-family: "Material Icons";
    font-weight: 600;
    font-size: 18px;
    vertical-align: middle;
    /* margin-left: 10px;*/
}

.child-tree-1.unchecked::before {
    content: "\E835";
    font-family: "Material Icons";
    font-weight: 600;
    font-size: 18px;
    vertical-align: middle;
    /*margin-left: 10px;*/
}

.contents > li > span.selected::before {
    content: "\E047";
    font-family: "Material Icons";
    font-weight: 600;
    font-size: 18px;
    vertical-align: middle;
    /*margin-left: 10px;*/
    color: var(--primary);
}


/*
###########################################################
    Tree Menu End
###########################################################
*/
#appdemo {
    display: flex;
}
.aside-section {
    min-width: 22%;
 }
.aside-section aside {

   /* display: none;
    width: 480px;
    background: #f9f9f9;
    height: auto;
    min-height: 250px;*/
}

.aside-section_lookup {
    min-width: 100%;
    background: #f9f9f9;
    height: 45vh;
    overflow-x: scroll;
}

aside.active {
    display: block;
}

aside a {
    display: block;
    padding: 10px 5px;
    color: #666;

}

.sidebarContainer {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100vw;
    max-width: 100%;
}

.sidebarContainer_lookup {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 10vw;
}

.sidebarContainer main {
    flex-grow: 2;
    padding: 10px;
}

.tree-child {
    display: block;
  /*  padding: 0px 14px;*/
    color: #666;
    /*margin-top: -25px;*/
  /*  padding-left: 20px;*/
    letter-spacing: 2px;
    display: inline-block;
}

.tree-child-1 {
    display: inline-block;
    padding: 0px;
    color: #666;
    margin-top:2px;
}

.last-child::before {
    content: "\E15B";
    font-family: "Material Icons";
    font-size: 16px;
    vertical-align: middle;
}
label.field{
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}
label.field.requiredInput {
    border-bottom: 2px solid #de7b25 !important;
}
.requiredInput
.sectiontabs .sectionitem {
    padding-left: 30px;
}

.col_btn {
    top: 50%;
    position: absolute;
    background: #eae8e8;
    color: white;
    font-weight: bold;
    border: 1px solid grey;
}

.prevcolumn {
    left: 0%;
}

.nextcolumn {
    right: 0%;
}

.dropdown-menu11 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #a2aabd;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-menu11 > li > a {
    padding: 10px 30px;
    display: block;
    clear: both;
    font-weight: normal;
    line-height: 1.6;
    color: #333333;
    white-space: nowrap;
    text-decoration: none;
}

.dropdown-menu11 > li > a:hover {
    color: #409FCB;

}

.dropdown-menu11 > li {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 0;
}

.caret11 {
    width: 0;
    position: absolute;

    height: 0;
    margin-left: -24px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    right: 10px;
    color: grey;
}

.blsearch-wrapper li {
    list-style: none;
}
.drp {
    border-bottom: 1px solid blue;
}
.dropdown-toggle11 {
    background: white;
    padding: 10px;
    border-bottom: 2px solid #a2aabd;
}
.ds:focus {
    background-color: red;
}


/*--------------------------Newly Addded CSSS-----------------------------------------------------------------*/
cdashborad-nav {
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdashborad-nav {
    color: rgba(206, 47, 47, 0.7);
    background-color: #fff;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.template-text {
    margin: 0;
    padding: 30px 0;
    text-align: center;
    font-size: 30px;
}

.autocomplete-items-index-file {
    position: absolute !important;

    z-index: 99;
    top: 100%;
    left: 5px;

    width: 220px;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items-index-file div {

    background-color: #fff;
}

ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    border-radius: inherit;
}

.dropdown-with-icons .material-icons {
    font-size: 24px;
    position: relative;
    margin-top: -4px;
    top: 1px;
    margin-right: 12px;
    opacity: 0.5;
}

.dashboard-table-sec {

    box-shadow: rgb(225, 225, 225) 3px 3px 6px;
}

.dropdown {
    display: inline-block;
}

.profile-dropdown {
    background: transparent;
    border: none;
    display: inline-block;
}

:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

.profile-dropdown-menu {
    left: -40px !important;
    top: 10px !important;
}
.profile-dropdown-menu.data-import-export-dropdown {
    left: 0px !important;
}

.profile-dropdown-menu .dropdown-item {
    cursor: pointer;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0.7px;
    color: #282828;
    font-weight: 400;
}
.profile-dropdown-menu.data-import-export-dropdown a,.profile-dropdown-menu.data-import-export-dropdown label{
   width:100%;
   cursor: pointer;
}
.form-settings-dropdown-menu {
    top: 25px !important;
    left: 30px !important;
}

.form-settings-dropdown-menu .dropdown-item {
    z-index: auto;
    font-size: 14px;
    line-height: 36px;
    letter-spacing: 0.7px;
    color: #282828;
    font-weight: 400;
}

.card-body {
    padding-top: 0px !important;
}

.dashboard-table-sec {
    box-shadow: rgb(225, 225, 225) 3px 3px 6px;
    padding-bottom: 10px;
    /*border: 1px solid #eaeaea;*/
}

.table-responsive {
    /*box-shadow: 0px 0px 2px 0px rgba(153,153,153,1);*/
    font-size: 1rem;
    background-color: #FFF;
    border-radius: 4px;
}

.dashboard-table-th-tr th {
    /*border: 1px solid #cccccc;*/
}

.table-responsive > table > thead > tr > th {

    border-top: none;
    border-bottom: none;
}

.table-responsive > table > tbody > tr:nth-child(2n) td {
    background: #EBEBEB !important;
}

.dropdown-menu {
    padding: 5px 0;
    border: 0;
    transform-origin: 0 0;
    will-change: transform, opacity;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.nav {
    z-index: 1;
    position: sticky;
    top: 41px;
}

.registration-form-sub-div .nav-pills .nav-link.active, .registration-form-sub-div .nav-pills .show > .nav-link {
    line-height: 16px;
    letter-spacing: 0.7px;
}

.panel-body {
    /*padding-top: 15px;*/
}

.nav-pills .nav-item {
    padding: 0;
    cursor: pointer;
}

.registration-form-sub-div .nav-pills .nav-link {
    line-height: 16px;
    border-radius: 30px;
    letter-spacing: 0.7px;
}

.sectiontabs .sectionitem {
    padding-left: 30px;
}

.section-open ~ .section-btn:before {
    content: "â®Ÿ";
    float: right;
}

.section-open:checked ~ .section-btn:before {
    content: "â®";

}

.section-open:checked ~ .section-panel {
    max-height: 100%;
    transition: max-height 1s, visible .25s, opacity .25s ease-in;
    opacity: 100;
    visibility: visible;
    /*padding-top: 0.5rem;*/

}
.w-24{
    width: 24px !important;
    min-width: 24px !important;
}
.w-10{
    width: 10px !important;
    min-width: 10px !important;
}
.w-50px{
    width: 50px !important;
    min-width: 50px !important;
}
.f-22{
    font-size: 22px;
}
.section-open {
    display: none;
}

.blformlookup-holder {
    padding: 0rem;
    position: absolute;
    background-color: #FFF;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px;
    /*z-index: 1000;*/
}


.aside-formlookup {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px;
    border-radius: 4px;
    /*padding: 5px;*/
    z-index: 1070;
}

.subdatatable-row{
   /*padding: 10px;*/
    border: 0 !important;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    font-size: 12px;
}

col_search {
    width: 100%;
    padding: 0px;
    padding-left: 0px;
    border: 1px solid rgba(206, 206, 206, 0.51);
    padding-left: 12px;
    border-radius: 0px;
}


.footer-copyright {
    overflow: hidden;
    color: var(--primary);
    background-color: #fff;
    border-top: 1px solid #f2f2f2;
}


/*--------------------------End of Newly Addded CSSS-----------------------------------------------------------------*/


/*----------------------------------------------migrating with regular development -----------------------------------------------------*/
.selectcount {
    width: 65px;
    height: 33px;
}


.floating-label-wrap .textareacharactersmessage {
    top: 9em;
    color: GREY;
    font-size: 12px;
    width: 100%;
    text-align: right;
    display: block;
    padding-right: 0;
    max-width: 100%;
}
.wfroute-icon{
    width: 24px;
    height: 24px;
}
.text-primary{
   color: var(--primary);
}
.filter_unchecked {
    position: relative;
}

.filter_unchecked::after {
    position: absolute;
    content: '\e5c9';
    width: 10px;
    height: 10px;
    font-size: 16px;
    right: 8px;
    bottom: 8px;
    font-family: "Material Icons";
    display: block;
    color: #f00e0e;
}
.collapsibleTable .filter_unchecked::after{
        right: 13px;
        bottom: 2px;
}
.requiredWarn {
    border-color: orangered !important;
    box-shadow: 0px 0px 10px 3px rgba(255, 69, 0, 0.4) !important;
    transition: box-shadow 0.3s ease-in-out !important;
}

.rowDeleteMark {
    border: 2px solid red !important;

}


/*-----------------------25-01-2020---------------------*/
.wfinput {
    width: 100%;
    height: 5%;
}

/*.selectcount.wfactivies
{
    width:5%;
}*/
.tab-content.wfactiviestab {
    margin-top: -34px;
}

[v-cloak] {
    display: none;
}
[draggable = true] { cursor: move !important;}


#bl-modal, #bl-uimodal {
    width: 100%;
    transition: 0.3s;
}

.overlay {
    height: 100%;
    z-index: 800;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
    user-select: none;
}

.overlay-content {
    position: relative;
    top: 28%;
    left: 45%;
    width: 15%;
    text-align: center;
    margin-top: 30px;
    color: #FFF;
    font-size: 17px;
    padding: 8px;
    background-color: rgba(85, 85, 80, 0.76);
    border-radius: 2px;
    user-select: none;
}

.bladv-search-modal {
    /* width: 100% !important;*/
    z-index: 11;
    position: fixed;
    max-height: 70vh;
    width: auto;
    /* max-width: 1300px;*/
    min-width: 288px;
    height: auto;
    /*top: 15vh;
    left: 39%;*/
    /*transform: translate(calc(-50%), calc(-50%));*/
    /*filter: blur(0);*/
    /*border: 1px solid #CECECE;*/
    border-radius: 3px;
    color: #000;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px;
}
.adv-search .col-lg-12{
    padding: 0;
}
a.md-btn:hover{
    color: #fff;
}

.md-sm-modal{
    max-width: 400px;
}
.md-md-modal{
    max-width: 600px;
}
.md-lg-modal{
    min-width: 900px;
}
.md-xl-modal{
    min-width: 1100px;
}
@media screen and (max-width: 1200px) {
    .md-xl-modal{
        min-width: 800px;
    }
}
@media screen and (max-width: 800px) {
    .md-xl-modal{
        min-width: 500px;
    }
    .md-lg-modal{
        min-width: 500px;
    }
}
.attach-md-modal .md-sm-modal{
     min-width: 600px;
}
@media screen and (max-width: 576px) {
    .md-xl-modal,.md-lg-modal,.attach-md-modal .md-sm-modal, .md-md-modal, .md-sm-modal{
        min-width: 300px;
        max-width: 300px;
    }
}
.blmodal-titlebar {
    text-align: center;
    padding: 10px;
    background-color: var(--primary);
    width: 100%;
    min-width: 200px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    /*
  padding: 8px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blmodal-titlebar h5 {
    margin-bottom: 0;
}

.blmodal-content {
    background-color: #FFFFFF;
    padding: 22px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    min-width: 450px;
    color: rgb(100, 100, 100);
}
.attachments_table_wrapper{
    border: 1px solid rgba(0,0,0,.12);
}
.attachment-table {
    text-align: center;
    transition: all 0.3s;
}

.attachments_table thead tr th {
    padding: 7px;
}

.attachments_table {
    width: 100%;
}

.attachments_table tr {
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

.attachments_table td {
    padding: 7px;
}

.attachments_table tr:hover {
    color: var(--secondary);
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.22);
}

.blbutton {
    background-color: #FFFFFF;
    padding: 4px 18px;
    border-radius: 3px;
    border: 1px solid rgb(135, 135, 135);
    box-shadow: 1px 1px 0px 0 rgba(100, 100, 100, 0.3);
    color: #212529;
}

/*.blbutton1
{
  *//*background-color: #284a5d96 !important;*//*
  background-color: #FFFFFF;
  padding: 4px 18px;
  border-radius: 3px;
  border: 1px solid rgb(135, 135, 135);
  box-shadow: 1px 1px 0px 0 rgba(100, 100, 100, 0.3);
  *//*color: #FFF;*//*
}*/

/*.blbutton1:hover
{
  background-color: #F5F5F5;
  cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.3) !important;
}*/


/*.blbutton1:active
{
  *//*transform: translate(0px, 1px);*//*
  *//*border-bottom: none;*//*
  *//*box-shadow: none;*//*
  border: 1px solid transparent;
  *//*opacity: 0.8;*//*
}
.blbutton1-disabled
{
  background-color: rgb(243, 242, 241);
  color: #000;
}

.blbutton1-disabled:hover
{
  background-color: rgb(243, 242, 241);
  cursor: initial;

}
.blbutton1{
  display: inherit;
}
.blbutton1.add_files_btn {
    background-color: var(--secondary);
    color: #fff !important;
}*/

.bllabel-top {
    line-height: 1rem;
    margin-bottom: 0px;
    padding-left: 0px;
     /*margin-top: 3px;*/
}

.all-input-field-label {
    letter-spacing: 0.7px;
    padding-bottom: 0px;
}

.blmodal {
    /*width: 420px !important;*/
    z-index: 11;
    position: fixed;
    width: auto;
    max-width: 700px;
    min-width: 280px;
    height: auto;
    top: 50% ;
    left: 50% ;
    transform: translate(-50%,-50%);
    /*transform: translate(calc(-50%), calc(-50%));*/
    filter: blur(0);
    /*border: 1px solid #CECECE;*/
    border-radius: 3px;
    color: #000;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 25.6px 57.6px 0px, rgba(0, 0, 0, 0.18) 0px 4.8px 14.4px 0px;

}

.sticky-footer {
    overflow: unset;
    z-index: 1;
    text-align: center;
    color: var(--primary);
    bottom: 0;
    position: fixed;
    width: 100%;
    background-color: #f2f2f2;
    padding: 5px;
    display: inline;

}
/*.zindex-3{
    z-index: 3;
}*/
/*.report-modal{
    margin: 1.75rem auto;
    position: static;
}*/

@media (min-width: 1500px) {
    .container.containerinsidetble {
        max-width: 1480px;
    }
}
@media (max-width: 1499px) {
    .container.containerinsidetble {
        max-width: 1140px;
    }
}
@media (max-width: 1300px){
    .container.containerinsidetble {
      max-width: 960px;
    }
}
@media (max-width: 1100px){
    .container.containerinsidetble {
      max-width: 870px;
    }
}
@media (max-width: 768px){
    .container.containerinsidetble {
      max-width: 720px;
    }
}
@media (max-width: 576px){
  .container.containerinsidetble {
    max-width: 540px;
  }
}

.tablecheckbox {
    margin-left: 6px;
    margin-right: 6px;
    display: flex;
    align-items: center;
}


.button-form {
    background-color: #FFFFFF;
    padding: 7px 18px 7px;
    border-radius: 2px;
    border: none;
    background-color: white;
    background-color: rgb(0, 120, 212);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
}

.button-form:active {
    box-shadow: none;
}

.button-form:hover {
    background-color: rgba(0, 98, 173, 1);
}

.blinfo {
    color: #17a2b8 !important;
}

.blwarn {
    color: #ffc107 !important;
}

.blerror {
    color: #dc3545 !important;
}
.blsuccess {
    color: rgb(76, 175, 80) !important;
}
/*.blinfo-bg {
    display: block;
    background-color: #17a2b8 !important;
}

.blwarn-bg {
    display: block;
    background-color: darkorange !important;
}

.blerror-bg {
    display: block;
    background-color: #d5091d !important;
}*/

.blimage {
    color: #000000;
}

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
    background: transparent;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
    background: transparent;
}

.input_nolabel {
    background-color: transparent;
    border: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    border-left-style: none;
    color: rgba(0, 0, 0, 0.87);
    border-top-style: hidden;
    border-left-style: hidden;
    border-right-style: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    font-size: 15px;
    padding: 1.2em 0.6em 0.2em;
    width: 100%;
    outline: none !important;
}

#search_hourId {
    background: white;
}

.workflow_checked {
    position: relative;
}

.workflow_checked::after {
    position: absolute;
    content: '\e86c';
    width: 10px;
    height: 10px;
    font-size: 16px;
    right: 3px;
    bottom: 7px;
    font-family: "Material Icons";
    display: block;
    color: #79C000;
}

.floating-label-wrap.nolabel {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0em;
}

.floating-label-wrap.nolabel input {
    height: 34px;
    font-size: 14px;
}

.cdashborad-nav {
    position: sticky;
    top: 0px;
    background: white;
    z-index: 4;
}

.topsec {
    position: fixed;
    top: 70px;
    z-index: 3;
    background: white;
    height: 77px;
    left: 0;
    right: 0;
}

.stickytopheader {
    position: sticky;
    top: 146px;
    z-index: 2;
}

.sectiontopheader {
    position: sticky;
    top: 194px;
    z-index: 500;
    background: white;
}

.arrow_down {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAaCAYAAABPY4eKAAAAAXNSR0IArs4c6QAAAvlJREFUSA29Vk1PGlEUHQaiiewslpUJiyYs2yb9AyRuJGm7c0VJoFXSX9A0sSZN04ULF12YEBQDhMCuSZOm1FhTiLY2Rky0QPlQBLRUsICoIN/0PCsGyox26NC3eTNn3r3n3TvnvvsE1PkwGo3yUqkkEQqFgw2Mz7lWqwng7ztN06mxsTEv8U0Aam5u7r5EInkplUol/f391wAJCc7nEAgE9Uwmkzo4OPiJMa1Wq6cFs7Ozt0H6RqlUDmJXfPIx+qrX69Ti4mIyHA5r6Wq1egND+j+IyW6QAUoul18XiUTDNHaSyGazKcZtdgk8wqhUKh9o/OMvsVgsfHJy0iWqVrcQNRUMBnd6enqc9MjISAmRP3e73T9al3XnbWNjIw2+KY1Gc3imsNHR0YV4PP5+d3e32h3K316TySQFoX2WyWR2glzIO5fLTSD6IElLNwbqnFpbWyO/96lCoai0cZjN5kfYQAYi5H34fL6cxWIZbya9iJyAhULBHAqFVlMpfsV/fHxMeb3er+Vy+VUzeduzwWC45XA4dlD/vEXvdDrj8DvURsYEWK3WF4FA4JQP9mg0WrHZbEYmnpa0NxYgPVObm5teiLABdTQT8a6vrwdRWhOcHMzMzCiXlpb2/yV6qDttMpkeshEzRk4Wo/bfoe4X9vb2amzGl+HoXNT29vZqsVi0sK1jJScG+Xx+HGkL4Tew2TPi5zUdQQt9otPpuBk3e0TaHmMDh1zS7/f780S0zX6Yni+NnBj09fUZUfvudDrNZN+GkQbl8Xi8RLRtHzsB9Hr9nfn5+SjSeWUCXC7XPq5kw53wsNogjZNohYXL2EljstvtrAL70/mVaW8Y4OidRO1/gwgbUMvcqGmcDc9aPvD1gnTeQ+0nmaInokRj0nHh+uvIiVOtVvt2a2vLv7Ky0tL3cRTXIcpPAwMDpq6R4/JXE4vFQ5FI5CN+QTaRSFCYc8vLy1l0rge4ARe5kJ/d27kYkLXoy2Jo4C7K8CZOsEBvb+9rlUp1xNXPL7v3IDwxvPD6AAAAAElFTkSuQmCC')
}

.arrow_up {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAaCAYAAACgoey0AAAAAXNSR0IArs4c6QAAAwpJREFUSA21Vt1PUmEYP4dvkQ8JFMwtBRocWAkDbiqXrUWXzU1rrTt0bdVqXbb1tbW16C9IBUSmm27cODdneoXjputa6069qwuW6IIBIdLvdaF4OAcOiGeDc87zPs/vd57P96WpFq7p6enbGo1mjKZpeTabjU1MTCRagGnOZHFxcXxtbe1XKpUq7+zslJeXl//Mz8+Hy+Uy3RxSE9qTk5M3otFooVQqgef4Wl9f343FYoEmoISrxuNxFX5f9vb2jhn/PxUKhfLS0tIPfFifUESRUMV8Pv/M6XReRm5rTGQyGeXxeGxYe1ezeBpBOBx2rKysbO7v79d4Wy3Y2Nj4GQqFbgnhaugxwiuGJx99Pp9FLBbXxYTXvTqd7v3MzIy6riIWGxJnMpl7AwMD14xGYyMsSq1WUyQdUqn0eSPlusQIsbGrq+vl4OCgvhFQZd1utyv1en0gEolcqsi47nWJlUrlG5fLZVcoFFy2nDKSDpIWlUoVTCQSEk4lCHmJMZ2GTCbTiMVikfIZ88l7enoos9l8dXt7+z6fDicxSJUokqDX6xXcl2wCROoc0vQCWL3sNfLOSdzR0fHY4XC4tVotl40gmVwup9xuN4OQv+UyqCFGH9rg7SOGYVRcBs3IEG4J0nVnamrqOtvuBDGGgQg9+wHFcVEi4a0LNkbdd6TrPKo8ODc311mteIIYjT/a398/jK+s1jnVM0kXoufCFvq0GuiIGEVgQIhfoygM1QrteEa9dAL7ITiYCt4RMabOK5AyKKzKWtvupLcRciu8D5J0EuDDPyT/Snd39yh6VtY2NhYQSR9G79Ds7OxdskRjEyAufvb7/cPoO5Z6e1+xtVKrq6vfcFzyi/A3ZrPZ3GdNSlwgo5ekE4X2RIQGf2C1WlufFE0GBeGWYQ8YERWLxQtnUVB830MKLZfL9RHir8lkssCn2G751tZWEWe03zTKm15YWPiEiXXTYDB0Ig/t7yd8PRws4EicwWHxO4jHD8/C5HiTTqd1BwcHFozKU89origB+y/kmzgYpgOBQP4fGmUiZmJ+WNgAAAAASUVORK5CYII=')
}

.arrow {
    float: right;
    width: 12px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position-y: bottom;
}


.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    /* left: 8.3%;
   right: 0;*/
    max-width: max-content;
    min-width: 10.5%;
    min-width: 10.5%;
}

.autocomplete-items div {
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9;
    color: white;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
}

.autocomplete-items-index-file {
    position: absolute !important;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 85%;
    left: auto;
    /* right: 10; */
    width: max-content;
    min-width: 280px;
    max-height: 600px;
    overflow-y: auto;
}

.autocomplete-items-index-file div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items-index-file div:hover {
    background-color: var(--secondary);
    color: white;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active-index-file {
    background-color: DodgerBlue !important;
    color: #ffffff;
}
.search_input{
    width:240px;
    color: black;
    background-color: rgba(255, 250, 250, 0.1);
    border: none;padding: 5px;
}
.cursor-default {
    cursor: default !important;
    pointer-events: none !important;
}

.blprogressbar {
    position: relative;
    width: 0;
    color: #FFF;
    background-color: rgb(14, 113, 191);
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    border-radius: 2px;
    z-index: -1;
}

.report-icon {
    color: var(--primary);
    font-size: 26px;
}

/*
###########################################################
    Checkbox Start
###########################################################
*/
.blcheckbox-label {
    font-size: 14px;
    color: var(--label_color);
    font-weight: 500;
    /*padding-left: 0.6em;*/
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
    height: 28px;
    padding-left: 0.6em;
    width: 100%;
}

.material-checkbox {
    z-index: 0;
    border-bottom: 2px solid transparent;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}
.floating-label-wrap label.material-checkbox {
      z-index: 0;
      border-bottom: 2px solid transparent;
      position: relative;
      display: inline-block;
      color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
      font-family: "Roboto", sans-serif;
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 0;
      top:0;
      left:0;
}
.floating-label-wrap label.blcheckbox-label {
    font-size: 14px;
    color: var(--label_color);
    position: static;
}
/* Input */
.material-checkbox > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -12px;
    top: -10px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 45px;
    height: 45px !important;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Span */
.material-checkbox > span {
    display: inline-block;
    width: 100%;
    cursor: pointer;
}
/* Box */
.material-checkbox > span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 4px 11px 3px 1px;
    border: solid 1px; /* Safari */
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 2px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    transition: border-color 0.2s, background-color 0.2s;
    background-color: white;
}

.material-checkbox > span.select-all::before {
    width: 25px;
    height: 25px;
}
.material-checkbox.material-select-all > span.select-all::after{
    content: "\e877";
    display: block;
    position: absolute;
    top: 5px !important;
    left: 3px !important;
    font-family: 'Material Icons';
    font-size: 20px;
    border: none;
    transform: none;
}
.material-select-all input{
    left: -9px;
    top: -3px;
}
.material-checkbox .subtable-sno-align::after {
    top: 8px;
}
.material-checkbox > input:disabled + span::before {
    background-color: #e7e7ec;
}
.material-checkbox.subtable-sno-checkbox input{
    top: -8px;
}

/* Checkmark */
.material-checkbox > span::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 2px;
    width: 10px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}
.material-checkbox > span.select-all::after {
    top: 10px;
    left: 4px;
    width: 14px;
    height: 6px;
}
/* Checked, Indeterminate */
.material-checkbox > input:checked,
.material-checkbox > input:indeterminate {
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.material-checkbox > input:checked + span::before,
.material-checkbox > input:indeterminate + span::before {
    border-color: var(--primary);
    background-color: var(--primary);
 }

.material-checkbox > input:checked + span::after,
.material-checkbox > input:indeterminate + span::after {
    border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}

.material-checkbox > input:indeterminate + span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

/* Hover, Focus */
.material-checkbox:hover > input {
    opacity: 0.04;
}

.material-checkbox > input:focus {
    opacity: 0.12;
}

.material-checkbox:hover > input:focus {
    opacity: 0.16;
}

/* Active */
.material-checkbox > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.material-checkbox > input:active + span::before {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}
.material-checkbox > input:required + span::before{
    border-bottom-color: #de7b25 !important;
    border-bottom: 2px solid #de7b25;
}

.material-checkbox > input:checked:active + span::before {
    border-color: transparent;
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}
.material-checkbox > input:disabled + span::before {
    background-color: lightgrey;
}

/* Disabled */
/*.material-checkbox > input:disabled {
    opacity: 0;
}

.material-checkbox > input:disabled + span {
    background-color: red;
   cursor: pointer;
}*/

/*.material-checkbox > input:disabled + span::before {
    border-color: currentColor;
}
input:disabled{
  background-color: #f4f4f4;
}*/

.material-checkbox > input:checked:disabled + span::before,
.material-checkbox > input:indeterminate:disabled + span::before {
    border-color: transparent;
    background-color: #e9ecef !important;
}

#weekDatesId .calCell {
    font-weight: 100;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#calContainerId select {
    /* styling */
    background-color: white;
    border: thin solid #cccccc;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;

    /* reset */

    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px,
    5px 5px,
    1px 1.5em;
    background-repeat: no-repeat;
}

.calendar-icon
{
    position:relative;
    margin-right: 5px;
    cursor: pointer;
}

#calContainerId select:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px,
    5px 5px,
    1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.label.field .psuedo_select {
    bottom: 10px;
}

label.field.sel .psuedo_select.sel {
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    position: relative;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    height: 25px;
    line-height: 0px;
    margin: 42px 0 0 0;
    min-width: 250px;
    padding-top: 20px;
    outline: 0;
}

label.field.sel {
    border-radius: 2px;
    text-align: right;
    display: block;
    width: 100%;
    padding: 0px 0 0 0;
    opacity: 0;
    position: relative;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    font-size: 16px;
    color: #a2aabd;
    font-weight: 500;
    margin-bottom: 2.9em;
}

label.field .searchclear {
    color: inherit;
    display: block;
    font-size: 16px;
    font-weight: 500;
    height: 20px;
    line-height: 20px;
    right: -25px;
    letter-spacing: 0.7px;
    pointer-events: none;
    position: absolute;
    top: 0px;
    transform: scale(1) translateY(0);
    transition-property: color, font-size, top;
}

.searchClear {
    top: 40px;
    position: absolute;
    right: 0px;
}

.blsearch-wrapper {
    text-align: right;
    position: relative;
    display: flex;
   /* margin-bottom: 1em;*/
}
 .interaction-modal-content, .md-modal-content .blsearch-wrapper{
    margin-bottom: 1em;
 }
.mb-10 {
    margin-bottom: 1em !important;
}
.select_clear {
    top: 22px;
    position: absolute;
    right: 25px;
}

label.field .psuedo_select.search {
    background: rgba(255, 255, 255, 0);
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.42);*/
    position: relative;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    margin: 0px 0 0 0;
    /* min-width: 250px;*/
    padding-top: 20px;
    outline: 0;
}

label.field.search {
    border-radius: 2px;
    display: block;
    /* width: 95%;*/
    padding: 0px 0 0 0;
    opacity: 0;
    position: relative;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    font-size: 16px;
    color: #a2aabd;
    font-weight: 500;
    /*margin-bottom: 0.5em;*/
}

.attach-tb thead tr th {
    font-size: 11px;
    font-weight: bold;
    position: sticky;
    top: 0;
    background-color: #f8f8f8;

}

.attch-tb thead tr th {
    position: sticky;
    top: 0px;
    background-color: rgb(248, 248, 248);
    font-size: 11px;
    font-weight: bold;

}

.attch-tb thead tr {
    position: sticky;
    width: 100%;
}
.attch-tb td {
    padding: 0 10px;
    white-space: normal;
}
.attch-tb thead tr span {
   /* color: red;*/
}

.form-control {
    border-radius: 0em;
}

.pointer {
    cursor: pointer;
    display: block;
}

.icon-clear .clear-icon {
    cursor: pointer;
    width: 20px;
    height: 20px;
    color: grey;
}

.calender-header h6 {
    font-size: 1rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.00938em;
    color: rgba(255, 255, 255, 0.54);
    margin: 0;
}

.calender-header h4 {
    font-size: 2.125rem;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 1.235;
    letter-spacing: 0.00735em;
    color: #fff;
    margin: 0;
}

.calender-header {
    background-color: var(--primary);
    min-height: 64px;
    padding: 24px;
}


/*------------checkbox------------------*/
.blcheckboxcontainer {
    padding-bottom: 7px !important;
    display: block;
    position: relative;
    padding: 0px 0 0 0px;
    /*padding-left: 35px;*/
    margin-bottom: -18px;
    cursor: pointer;
    font-size: 22px;
    /*user-select: none;*/
    height: 2.5rem;
    width: 1.3rem;
}

/* Hide the browser's default checkbox */
.blcheckboxcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.blcheckbox {
    /*text-align: left;*/
    /*position: relative;*/
    height: 0px !important;
    /*margin-bottom: 3%;*/
    margin-top: 3px;
    top: -3 !important;
    left: 4px;
    display: inline-block;
    min-height: 21px;
    min-width: 21px;
    background-color: rgba(240, 240, 240, 0.4);
    border-radius: 2px;
    border: 1px solid rgb(138, 136, 134);
    border-color: rgb(200, 200, 200);
    cursor: pointer;
}

.blcheckbox:disabled {
    background-color: rgb(243, 242, 241);
    border-color: lightgray;
    text-overflow: ellipsis;
}


.blcheckboxrow {
    margin-bottom: 2%;
    margin-top: 2%;
    margin-left: 0% !important;
}

.blcheckbox-label {
    /* padding-top: 0.7%;*/
    /*font-weight: 600;*/
    /*text-overflow: ellipsis;*/
    vertical-align: middle;
    line-height: 1rem;
    /*padding-left: 1%;*/
    /*font-size: 14px;*/
    /*color: #4e4d4cd1;*/
    cursor: pointer;
    max-width: calc(100% - 40px);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: auto;
    /*z-index: 1;*/
}

.blcheckbox-wrapper {
    display: flex;
    justify-content: left;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 7px;
}

.blcheckbox-wrap::after {
    top: 11px !important;
}

/* On mouse-over, add a grey background color */
.blcheckboxcontainer:hover input ~ .blcheckbox {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.blcheckboxcontainer input:checked ~ .blcheckbox {
    background: rgba(58, 146, 214, 1);
    border: none;
}

/* Create the blcheckbox/indicator (hidden when not checked) */
.blcheckbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the blcheckbox when checked */
.blcheckboxcontainer input:checked ~ .blcheckbox:after {
    display: block;
}

/* Style the blcheckbox/indicator */
.blcheckboxcontainer .blcheckbox:after {
    left: 0.5rem;
    top: 0.11rem;
    width: 6px;
    height: 14px;
    /* border-radius: 1px; */
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0px;
    transform: rotate(45deg);
}

.field-for-clear:hover > .action-icons > span {
    padding-top: 2px !important;
    display: inline;
}

.datepicker:hover > .action-icons > span {
    padding-right: 15px !important;
    display: inline;
}

.field-clear {
    display: none;
}

.selectfield-for-clear:hover > span {
    display: inline;
}

.col_search-td {
    background-color: white;
}

.bl_table td.col_search-td {
    /*padding: 0px 0 !important;
    min-width: 210px;
    vertical-align: bottom;*/
    padding: 0 !important;
    overflow: visible;
}

.search_floating-label-wrap {
    padding-left: 15px;
}

.blsearch-wrapper .field[readonly= "readonly"] {
    background-color: #e9ecef !important;
}

.blsearch-wrapper .field[readonly= "readonly"] span {
    background-color: #e9ecef !important;
}

.blsearch-wrapper .field span {
    left: 7px;
}

.checkbox-wrapper {
    margin-bottom: 1em;
    height: 28px;
}
.checkbox-wrapper.reportparam{
  padding-left: 0;
}

.disabledField {
    background-color: #e9ecef !important;
}

.tbOptdisabled {
    cursor: not-allowed !important;
    opacity: 0.5;
}

#filterdropdown {
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    width: 467px;
}

.required-field {
    overflow-x: visible;
    overflow-y: auto;
    max-height: 200px;
    line-height: 2rem;
    white-space: nowrap;
}

.wftimeline-header {
    display: table-header-group;
    font-size: 13px;
    font-weight: bold;
    position: sticky;
    top: 0;
    background-color: #f8f8f8;
    border-bottom: 2px solid grey;
    height: 30px;
}

.wftimeline-table-content {
    overflow-y: auto;
    max-height: 500px;
}
.prevnxtLink{
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prevnxtLink:hover{
    cursor: pointer;
    border: 1px solid white;
    box-shadow: none;
}
.prevnxtLink i{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wfactivity-refresh-header {
    font-family: OpenSans;
    color: #FFFFFF;
    border-radius: 5px;
    position: relative;
    top: 0px;
    transition: all ease 0.3s;
    /*left: 14px*/
    left: -4px

}
.blformlookup-header .lookup-header-lable{
    font-family: Roboto, sans-serif;
    font-size: .875rem;
    line-height: 1.375rem;
    font-weight: 600;
    letter-spacing: .0071428571em;
    box-sizing: border-box;
    text-align: left;
    height: 36px;
    color: rgba(0,0,0,.87);
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.floating-label-wrap label.material-select-all{
    position: relative;
    top: 0;
    left: 0;
}

.lookup-header-title {
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    display: block;
}

.lookup-table {
    width: 100%;
    /* width: max-content;*/
    table-layout: auto !important;
}

.lookup-table-pos {
    width: max-content !important;
    min-width: 100% !important;
}
.lookup-table tbody tr:nth-of-type(odd) {
    /*background-color: #e7e7ec;*/
}
.bllookuptr td{
    /*padding: 10px !important;*/
    height: 38px !important;
}
.material-table.material-medium .bl_table .bllookuptr  td{
    height: 38px !important;
}
.blinput-lookup{
    width: 100%;
}
.lookup-img {
    outline: 2px solid transparent;
}
.lookup-img:focus {
    outline: 2px solid var(--primary);
}
*:focus {
    outline: none;
}

.add_files_btn i {
    vertical-align: middle;
    margin-right: 5px;
}

.add_files_btn {
    margin-right: 15px;
    /*background-color: var(--primary);
    color: white;*/
}

.calenderdiv {
    background-color: var(--primary);
}

.table .themetablethead {
    background-color: var(--primary);
}

.blbutton1.uploadbtn {
    color: white;
    background-color: var(--primary);
}

.count-status {
    padding: 4px;
    padding-right: 11px;
    size: 14px;
    font-size: 14px;
}

.list-icons {
    display: flex;
    position: sticky;
    top: 70px;
    z-index: 1;
    background-color: white;
}

.bltextareaexp {
    font-size: 15px;
    width: 200%;
    box-shadow: none;

    padding: 0.15rem 0.4rem;
    box-sizing: border-box;
    cursor: text;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    border-width: 1px;
    border-style: solid;
    /* border-color: rgb(138, 136, 134); */
    border-color: rgb(200, 200, 200);
    border-image: initial;
    border-radius: 2px;
    /* background: rgb(255, 255, 255); */
    /* box-shadow: 0px 0px 5px -5px rgba(0,0,0,0.5); */
    text-overflow: ellipsis;
    white-space: pre-wrap;
    /*overflow: hidden;*/
    outline-color: transparent;
    overflow-y: scroll;
    height: 100px;
    resize: none;
}

.bltextareatempl {
    font-size: 15px;
    width: 300%;
    height: 250px;
    box-shadow: none;

    padding: 0.15rem 0.4rem;
    box-sizing: border-box;
    cursor: text;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    border-width: 1px;
    border-style: solid;
    /* border-color: rgb(138, 136, 134); */
    border-color: rgb(200, 200, 200);
    border-image: initial;
    border-radius: 2px;
    /* background: rgb(255, 255, 255); */
    /* box-shadow: 0px 0px 5px -5px rgba(0,0,0,0.5); */
    text-overflow: ellipsis;
    white-space: pre-wrap;
    overflow: hidden;
    outline-color: transparent;
}

.lookupnewattachmodal {
    width: 20px;
    position: relative;
    padding: 1px 3px 3px;
    right: 8%;
    top: 8%;

}

.templatemodallookup
{
    position: relative;
    top: 0px;
    width: 24px;
    left: 0;
}

.formnavigation-button {
    display: none;
    cursor: pointer;
}

.wrapper:hover .formnavigation-button {
    display: inline-block;
}

.topbar_company_text_overflow {
    margin: 0 0 2em 0;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    max-width: 50em;
    display: inline-flex;
}

.topbar_company_text_overflow:hover {
    overflow: auto;
    white-space: normal;
    height: auto;
}

.profile-dropdown.clickable svg {
    height: 20px;
}

@media screen and (min-width: 1200px) {
    .container.subtablecontainer {
        max-width: 1700px;
    }
}

.blsubtabletr .details-control::after {
    content: " ";
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    width: 16px;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--primary);
    display: block;
}

.blsubtabletr.shown .details-control::after {
    content: " ";
    font-size: 20px;
    color: var(--primary);
    width: 16px;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary);
}

.blsubtabletr:focus {
    background-color: var(--secondary) !important;
    color: white;
    font-weight: bold;
}
.table-striped tbody tr.blsubtabletr:nth-of-type(odd):focus:hover, .blsubtabletr:focus:hover {
    background-color: var(--secondary) !important;
    color: white !important;
}
.blsubtabletr:focus:hover td .action-icons .lookup-icon, .blsubtabletr:focus td .action-icons .lookup-icon,.blsubtabletr:focus:hover td .icon-color,.blsubtabletr:focus td .icon-color{
    color: white;
}
.dense-table-wrapper table tbody tr.blsubtabletr:focus:hover td, .dense-table-wrapper table tbody tr.blsubtabletr:focus td{
    color: white;
}
.blsubtabletr.shown:focus .details-control::after,.blsubtabletr.shown:focus:hover .details-control::after{
    border-top: 8px solid white;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.blsubtabletr:focus .details-control::after, .blsubtabletr:focus:hover .details-control::after{
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
}
.subtable .bl_table.sticky_header_table tbody tr td.details-control, .subtable .bl_table.sticky_header_table thead tr th:nth-of-type(1),.subtable .bl_table.sticky_header_table tbody tr td.show_child_details,.subtable .bl_table.sticky_header_table thead tr th.show_child_details{
    width: 50px !important;
}
.input-color {
    padding: 4px !important;
    padding-right: 4px !important;
    max-width: 20%;
    height: 30px !important;
}


.cursor {
    cursor: pointer;
}

.td_sequnce_input {
    border: 0.5px solid grey;
    height: 30px;
    display: inline-block;
}

.nav-pills.nav-home .nav-item.active {
    background: var(--primary);
    border: 1px solid #b2b2b2;
    border-radius: 20px;
    color: #fff;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    line-height: 12px;
    letter-spacing: 0.1px;
    height: 30px;
    margin-top: 5px;
}

.icon-bar {
    color: var(--quaternary);
}

.icon-bar-icon {
    padding: 5px;
}

.audit-table {
    width: 100%;
    border: 1px solid rgb(224,224,224);
}

.list-page-sticky {
    position: sticky;
    top: 147px;
    z-index: 2;
    background: white;
    border-top: 1px solid #eaeaea;
    border-radius: 6px;
}
.br-4{
    padding: 2px;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,.12);
    /*box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);*/
}
.listpage-columns-content .br-4, .listpage-columns-content .dense-table-wrapper table thead tr,dense-table-wrapper table tbody tr{
    border-color: rgba(0,0,0,.1);
}
.list-page-th-sticky {
    z-index: 1;
    background: white;
    font-size: 12px;
}

.list-page-head {
    position: sticky;
    top: 0;
    z-index: 1;
}

.list-msg {
    color: red;
    padding: 20px;
    padding-left: 50vh;
    font-size: 15px;
}

.li-item {
    border: 1px solid #b2b2b2;
    border-radius: 20px;
    color: black;
    height: auto;
    padding: 4px;
    margin-right: 10px;
}

.li-item.active {
    background: var(--primary);
    border: 1px solid #b2b2b2;
    border-radius: 20px;
    color: #fff;
    height: auto;
    padding: 4px;
}

.li-link {
    font-size: 17px;
    padding: 4px;
}

.formtoolbar-img {
    height: 30px;
    width: 30px;
    margin-right: 9px;
}

.theme-color{
color: var(--primary);
}

.adv-search-select{
    height: 26px;
    min-width: 120px;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    border-left-style: none;
    border-top-style: none;
    border-right-style: none;
    color: #666;
    line-height: 1.5;
    /*font-weight: 600;*/
}
.modal-save{
    float:right;
    padding-right: 15px;
}
.modal-close{
    float:right;
    font-size:20px;
}
.modal-close:hover{
    cursor: pointer;
}
.modal-save:hover{
    cursor: pointer;
}
.listpage-columns-content{
    padding-top: 7px;
    width: 100%;
    padding-bottom: 20px;
    max-height: 35rem;
    overflow: auto;
}
.input-wrapper.field-for-clear.input-color-field{
    display:block;
}
.form-control.input-color:focus{
    border: none;
    box-shadow: none;
}
.field-for-clear:hover > .col-md-2 .action-icons > span {
    padding-top: 10px !important;
    display: inline;
}


 .dropbox {
    width:70%;
    outline: 2px dashed rgb(200,200,200); /* the dash box */
    outline-offset: -10px;
    color: dimgray;
    padding: 10px 10px;
    min-height: 160px; /* minimum height */
    position: relative;
    cursor: pointer;
  }

.dropbox .input-file {
    opacity: 0; /* invisible but it's there! */
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

.dropbox p {
    font-size: 14px;
    text-align: center;
    padding: 50px 0;
}

.editImage{
    padding-top: 25px;
    padding-left: 10px;
    position: absolute;
    top:0;
    display:none;
}
.uploadedImage{
}

.uploadedImage:hover .editImage{
   padding-top: 25px;
   padding-right: 25px;
   position: absolute;
   top:0;
   display:flex;
}
.dashboard_table{
    overflow: scroll;
    max-width: max-content;
}
.dashboard-title{
    text-align: center;
    color: red;
    font-weight: bold;
}
.toolbar-cols{
    margin: 0px;
    padding: 0 5px;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}
.textarea-disabled{
    background-color: #e9ecef !important;
}
.form-control:disabled{
    background-color: #e9ecef;
    opacity: 1;
}
.form-control[readonly]{
    background-color: #e9ecef;
    opacity: 1;
}
.contents > li.active div{
    color: white;
    background-color:  var(--primary);
    width: 100%;
    padding:5px;
}
.contents > li.active span a {
    color: white;
}
.child-tree.unchecked font{
    vertical-align:middle !important;
}
.child-tree
{
    vertical-align:middle;
    padding:6px;
    margin-top:2px;
    letter-spacing: 1px;
}
.child-tree.checked
{
    background-color:  var(--primary);
    /*display: inline-block;*/
    width: 100%;
    color:white;
    margin-top: -5px;
}
.child-tree.checked font
{
    font-size:12px;
}
.tree .folder .contents li .selected{
    background-color: rgb(1, 152, 255);
    padding: 5px;
    width: 100%;
    display: table;
    color: white;
}
.tree .folder .contents li .selected a{
    color: white;
}
.tree .folder .contents li .child-tree.unchecked.selected{
    display: inline-block;
    padding: 5px 5px 5px 5px;
    width: 100%;
    margin-top: -5px;
}
.tree-header{
    justify-content: space-between;
    display: flex;
}
.search-input.tree-search{
         width: 75%;
        border-bottom:1px solid lightgray;
        padding: 5px 5px 5px 30px;
        height: 31px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.42);
        border-left-style: none;
        border-top-style: none;
        border-right-style: none;
        color: #666;
        /* line-height: 1.5; */
        font-weight: 600;

}
.search-input.tree-search:focus{
    box-shadow: 0 0 5px var(--primary);
    border-bottom: 1px solid var(--primary);
}
.tree-search-clear{
    display:none;
}
.tree-search-div{
    display:flex;
    padding: 5px;
    width: 100%;
}
.tree-search-div:hover > .tree-search-clear{
    display:flex;
    left: -15px;
    position: relative;
    top: 5px;
}
.material-icons.tree-clear-icon{
    top: 5px;
    position: relative;
}
.tree-menu{
    min-width: 100%;
    max-width: 330px;
    position: relative;
    overflow-x: auto;
    z-index: 1;
    /*height: 70vh;*/
    overflow-y: auto;
}
.dashboard_input{
    margin-top: 2px;
    height: 30px;
    width: 4vw;
    padding: 4px;
}
.dashboard_input_label{
    padding: 4px;
}
/*

==============================
Web notifications
=============================*/

hr {
    border: 0;
    height: 0;
    margin: 1.5rem 0;
    border-top: 1px solid gray;
}
.dropdown__menu-nav{
    list-style: none;
    padding-left: 0;
}
.dropdown__menu-nav .dropdown__menu-item{
    background-color: var(--primary);
    padding: 0.2rem 1rem 0 0;
}
.no_usernotifications_msg{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    color: #b5b5c3;
}
.no_usernotifications_msg i{
   padding: 5px;
}
.no_usernotifications_msg span{
 padding: 6px 5px;
}
.header--button {
    right: 24px;
    position: relative;
    margin: 0;
    padding: 0;
    color: gray;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
}
.header--button--close{
    outline: none;
    background: transparent;
    text-align: right;
    width: 100%;
    border: 0;
}
.header--button--close svg{
   border: 1px solid transparent;
}
.header--button--close:hover svg{
    border: 1px solid white;
}
.header--button:focus {
    outline: 0;
}
.header--icon {
    width: 1.65rem;
    height: 1.65rem;
}
.dropdown__menu {
    top: 100%;
    right: 0;
    position: absolute;
    z-index: 10;
    max-height: 30rem;
    min-width: 420px;
    margin-top: 1rem;
    overflow-y: auto;
    padding: 0rem 0rem 0rem 0rem;
    border-radius: 12px;
    background-color: white;
    border: 1px solid gray;
    background-clip: padding-box;
}
.dropdown__menu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 0 0;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}
.dropdown__menu-link:hover {
    color: #17bf63;
    text-decoration: none;
    /*background-color: rgba(79, 192, 141, 0.1);*/
}
.dropdown__menu-svg {
    width: 1.5rem;
    height: 1.5rem;
}
.dropdown__menu-text {
    font-weight: 300;
    margin-left: 1rem;
    margin-right: 1rem;
    color: white;
    border-bottom: 3px solid #20c997;
}

.slide-fade-enter-active,
.slide-fade-leave-active {
    transition: all 0.6s;
}

.slide-fade-enter,
.slide-fade-leave-active {
    opacity: 0;
}

.slide-fade-enter {
    transform: translateX(31px);
}

.slide-fade-leave-active {
    transform: translateX(-31px);
}

.dropdown-enter-active,
.dropdown-leave-active {
    transition: all 0.5s;
}

.dropdown-enter,
.dropdown-leave-to {
    opacity: 0;
    transform: translateY(30px);
}
.wftimeline-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.center_wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.main {
    margin: 6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.main__subtitle {
    color: #4f5959;
    font-weight: 100;
    margin-bottom: 2rem;
}
.main__link {
    margin-right: 1.5rem;
    display: inline-block;
}
.main__link:last-child {
    margin-right: 0;
}
.main__svg {
    width: 2rem;
    height: 2rem;
    opacity: 0.6;
    color: #94a2b0;
}
.main__svg:hover {
    color: #ffad1f;
}
.notification_count{
    color: #fff;
    background-color: #c5421b;
    border-color: #1bc5bd;
    cursor: pointer;
    font-weight: 500 !important;
    outline: none;
    margin-left: .5rem;
    padding: .55rem .75rem;
    border-radius: .42rem;
    font-size: 13px;
}
.notification_table_wrapper table{
    width: 100%;
}
.notification_table_wrapper table tr{
    border-bottom: 1px solid #ebedf3;
}
.notification_table_wrapper{
    padding: 0rem 1rem 0 1rem;
}
.notification_table_wrapper table thead th{
    font-size: 14px;
    padding: 8px;
    color: #b5b5c3;

}
.notification_table_wrapper table tbody td{
    font-size: 14px;
    padding: 8px;
}
.dropdown__menu-item h6{
    text-align: center;
    color: white;
    font-weight: 600;
}
.notification-badge{
    position: absolute;
    z-index: 2;
    color: #fff;
    background-color: #f64e60;
    font-weight: 400;
    height: 24px;
    width: 24px;
    font-size: .7rem;
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    right: -7px;
    top: -6px;
}
.dropdown__menu .ul-pagintaion{
    display: flex;
    margin-bottom: 0;
    align-items: center;
}
.dropdown__menu .li-pagintaion{
    border: 1px solid transparent;
    padding: 0;
}
.dropdown__menu .li-pagination:hover{
    border: none;
}
.dropdown__menu .li-pagintaion a{
    padding: 5px 6px;
}
.dropdown__menu .li-pagintaion a:hover{
    text-decoration: none;

}
.dropdown__menu .li-pagintaion .current1{
    background-color: var(--primary);
    color: white !important;
    font-weight: bold;
    color: white;
}
.notification_table_wrapper{
    position: relative;
}
#bl-modal .notification-wrapper{
    z-index: 11;
    position: absolute;
    top: 60px;
    left: 15px;
    height: 350px;
    border: 1px solid #CECECE;
    border-radius: 3px;
    color: #000;
    background-color: white;
    box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);
    width: 390px;
}
.notification-wrapper .blmodal-content{
    min-width: 100%;
}
.notification-wrapper .blmodal-content i{
   padding: 0px 10px 0 10px;
}
.notification-wrapper .modal-header .modal-title {
    font-size: 14px;
}
.body-wrapper{
    text-align: left;
    font-size: 14px;
}
.notification-wrapper h5{
    font-size: 14px;
}
.notification-overlay{
    width: 100%;
    transition: 0.3s;
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 200ms;
}
.center_wrapper{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.md_table_wrapper{
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
    width: 100%;
    overflow-x: auto;
}
.md_table_wrapper table{
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
}
.md_table_wrapper table thead{
    display: table-header-group;
    border-collapse: collapse;
    border-spacing: 0px;
    color: rgba(0, 0, 0, 0.87);
}
.md_table_wrapper table thead tr{
    display: table-row;
    vertical-align: middle;
}
.md_table_wrapper table thead tr th{
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: 0.01071em;
    display: table-cell;
    vertical-align: inherit;
    border-bottom: 1px solid rgb(224, 224, 224);
    text-align: left;
    padding: 6px 16px;
    color: rgba(0, 0, 0, 0.87);

}
.md_table_wrapper table tbody tr td{
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    display: table-cell;
    vertical-align: inherit;
    border-bottom: 1px solid rgb(224, 224, 224);
    text-align: left;
    padding: 6px 16px;
    color: rgba(0, 0, 0, 0.87);
}
.dashboard-table-td-tr{
  border-top: 1px solid rgba(0,0,0,.12);
}
.dashboard-table-td-tr:hover,.table-striped tbody tr:nth-of-type(odd):hover{
   background-color: rgba(0,0,0,.04) !important;
}
.p-15{
    padding: 15px;
}
.red-text{
    color: red !important;
    padding-left: 5px !important;
    position: absolute !important;
    right: 0px !important;
    left: auto !important;
    top: 0 !important;
}
.reportparm_astric_symbol{
   color: red !important;
   padding-left: 5px !important;
   position: relative;
   left: auto !important;

}

.sortcol-align{
    display: flex;
    justify-content: space-between;
     align-items: center !important;
    cursor: pointer;
}
.sortcol-align span{
    padding-top: 3px;
}
.sortcol-align .material-icons{
    opacity: 0;
     /*width: 1em;
     height: 1em;*/
     font-size: 18px;
}
.list-page-th-sticky:hover > .sortcol-align .material-icons, .blformlookup-header td:hover > .sortcol-align .material-icons{
    opacity: 1;
    /*width: 1em;
    height: 1em;*/
    font-size: 18px;
}
.list-page-th-sticky > .sortcol-align .material-icons.displayBlock, .blformlookup-header td:hover > .sortcol-align .material-icons.displayBlock{
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    user-select: none;
    transform: rotate(0deg);
     display: block;
 }
.list-page-th-sticky > .sortcol-align .material-icons.rotate, .blformlookup-header td:hover > .sortcol-align .material-icons.rotate{
    -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,-webkit-transform 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,transform 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
     display: block;
}
#hours-tooltip, #mins-tooltip,#secs-tooltip {
    display:none;
    position:relative;
}
#hours-container:hover p, #mins-container:hover p, #secs-container:hover p {
    display: block;
    position: fixed;
}

.search-field{
    width:min-content;
    min-width:100px;
}
.search-field .col_search{
    height: 38px;
    margin-right: -12px;
}
.search-field .col_search .calendar-icon{
    margin-right: 10px;
}
#calContainerDiv{
   background-color:var(--primary);
}
#adv_search_addrow{
   color: var(--secondary);
}
.menu ul .dropdown-submenu .dropdown-item span,.menu ul .dropdown-submenu .dropdown-item i {
    color: #212529;
}
.menu ul .dropdown-submenu:hover {
    background-color: var(--secondary) !important;
}
.menu-wrapper ul li:hover > .dropdown-item > span, .menu-wrapper ul li:hover > .dropdown-item > i, .menu ul .dropdown-submenu:hover > .dropdown-item > span,.menu ul .dropdown-submenu:hover > .dropdown-item > i, .parent.dropdown-item:hover > .dropdown-item > span, .parent.dropdown-item:hover > .dropdown-item > i  {
    color: #fff;
}
.modal-overlay{
   position: fixed;
   top: 0;
   left: 0;
   z-index: 1040;
   width: 100vw;
   height: 100vh;
   background-color: #000000;
   opacity: 0.2;
   display: none;
}
.mat-modal{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    display: none;
}
.mat-modal.confirmation-mat-modal{
    z-index: 1075;
}
.confirmation-mat-modal + .modal-overlay{
    z-index: 1074;
}
.show-modal-overlay .modal-overlay{
    display: block;
}
.show-modal-overlay .mat-modal{
    display: block;
}
.mat-modal .modal-dialog-centered{
    min-height: calc(100% - 3.5rem);
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: auto;
    pointer-events: none;
    max-width: 500px;
    justify-content: center;
    margin: 0 auto;
}
.modal-dialog-content{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid rgba(0, 0, 0, 0.2);
    border-radius: 0.42rem;
    z-index: 1050 !important;
    box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);
}
.confirmation-modal .md-modal-content p i{
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}
.md-modal-header{
    margin: 0px;
    padding: 24px 24px;
    display: flex;
    flex: 0 0 auto;
}
.md-modal-header span{
    display: inline-block;
    vertical-align: middle;
    /*margin-right: 12px;*/
}
.md-modal-header h5{
    margin-bottom: 0;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 0.0075em;
    color: rgba(0, 0, 0, 0.87);
}
.md-modal-header p{
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.6);
}
.md-modal-close{
    display: inline-flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: transparent;
    outline: none 0px;
    border: 0px none;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    text-align: center;
    flex: 0 0 auto;
    font-size: 1.5rem;
    padding: 8px;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    position: absolute;
    right: 8px;
    top: 8px;
    color: rgb(158, 158, 158);
}
.md-modal-content{
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0 24px 24px;
    max-height: 400px;
}
.md-modal-content p{
    margin: 0px;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.6);
}
.md-modal-content p.font-small, .md-modal-content i.font-small{
    font-size: 13px !important;
    color: rgba(102,102,102, .9);
}
.md-modal-content.message-modal-body{
    overflow-y: unset;
    overflow-x: auto;
}
.error_code_text i{
    opacity: 0;
}
.error_code_text:hover i{
    opacity: 1;
}
.error_code_text{
   cursor: pointer;
}
.md-modal-footer{
    display: flex;
    -moz-box-align: center;
    align-items: center;
    padding: 8px;
    -moz-box-pack: end;
    justify-content: flex-end;
    flex: 0 0 auto;
}
/*.md-modal-footer .text-button{
    display: inline-flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    background-color: transparent;
    outline: currentcolor none 0px;
    border: 0px none;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    color: rgb(25, 118, 210);
}*/
.md-modal-footer .mr-3{
    margin-right: 8px !important;
}
.genericFormModal{
    min-width: 900px;
}
.md-list{
    padding: 0;
}
.md-list li{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    height: 48px;
}
.md-list li i{
    font-size: 12px;
    margin-right: 10px;
}
.md-list li a{
    color: rgba(0, 0, 0, 0.87);
}
.md-list li:hover{
    background-color: rgba(0, 0, 0, 0.08);
}
.md-list li:hover a{
    color: var(--primary);
}
.space-between{
    justify-content: space-between;
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
/*.blinfo {
    color: rgb(1, 67, 97) !important;
}
.blwarn {
    color: rgb(102, 60, 0) !important;
}
.blerror {
    color: rgb(95, 33, 32) !important;
}
.blsuccess{
    color: rgb(30, 70, 32) !important;
}
.blsuccess-bg{
    display: inline-block;
    background-color: rgb(237, 247, 237) !important;
    color: rgb(30, 70, 32) !important;
}
.blinfo-bg {
    display: inline-block;
    background-color: rgb(229, 246, 253) !important;
    color: rgb(1, 67, 97) !important;
}
.blwarn-bg {
    display: inline-block;
    background-color: rgb(255, 244, 229) !important;
    color: rgb(102, 60, 0) !important;
}
.blerror-bg {
    display: inline-block;
    background-color: rgb(253, 237, 237) !important;
    color: rgb(95, 33, 32) !important;
}

.blsuccess-bg .md-modal-header h3, .blsuccess-bg .md-modal-content p, .blsuccess-bg .md-modal-footer .text-button{
    color: rgb(30, 70, 32) !important;
}
.blinfo-bg .md-modal-header h3, .blinfo-bg .md-modal-content p, .blinfo-bg .md-modal-footer .text-button{
    color: rgb(1, 67, 97) !important;
}
.blwarn-bg .md-modal-header h3,  .blwarn-bg .md-modal-content p, .blwarn-bg .md-modal-footer .text-button{
    color: rgb(102, 60, 0) !important;
}
.blerror-bg .md-modal-header h3, .blerror-bg .md-modal-content p, .blerror-bg .md-modal-footer .text-button{
    color: rgb(95, 33, 32) !important;
}*/
.blerror-bg .md-modal-header span i{
  color: rgb(239, 83, 80) !important;
}
.blsuccess-bg .md-modal-header span i{
    color: rgb(76, 175, 80) !important;
}
.blwarn-bg .md-modal-header span i{
    color: rgb(255, 152, 0) !important;
}
.blinfo-bg .md-modal-header span i{
  color: rgb(3, 169, 244) !important;
}
.p-0{
    padding: 0 !important;
}
.blstcolsearch-td .p-0-7{
     padding: 0 7px 0 0 !important;
}
.p-0-7{
    padding: 0 7px !important;
}
.p-0-16{
    padding: 0 16px !important;
}
.show_row_details_td{
    height: 52px !important;
}
.border-0 .input-wrapper{
    padding: 4px 7px;
}
.border-0 .input-wrapper  input{
    /*border: none;*/
}
.border-0 .input-wrapper  input:focus{
    border-bottom: 2px solid #1976d2;
}

input[type="range"] {
   -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
    border-bottom: 0;
    height: 30px;
    margin-top: 10px;
}

input[type="range"]:focus {
  outline: none;
  border: none;
}
input[type="range"]::-webkit-slider-runnable-track {
   background-color: var(--secondary);
   border-radius: 0.5rem;
   height: 0.5rem;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
   appearance: none;
   margin-top: -5px;
   background-color: var(--primary);
   height: 1rem;
   width: 1rem;
   border-radius: 50%;
}
input[type="range"]::-moz-range-track {
   background-color: var(--secondary);
   border-radius: 0.5rem;
   height: 0.5rem;
}
input[type="range"]::-moz-range-thumb {
   border: none;
   border-radius: 0;
   background-color: var(--primary);
   height: 1rem;
   width: 1rem;
   border-radius: 50%;
}
.material-table.material-compact .bl_table td{
   height: 32px !important;
   padding: 0 16px !important;
}
.material-table.material-compact .bl_table th{
    height: 36px !important;
    padding: 0 16px !important;
}
.material-table.material-medium .bl_table td{
   height: 52px !important;
   padding: 0 16px !important;
}
.material-table.material-medium .bl_table th{
    height: 56px !important;
    padding: 0 16px !important;
}
.material-table.material-medium .bl_table td.p-0, .material-table.material-compact .bl_table td.p-0{
    padding: 0 !important;
}
.material-table.material-medium .bl_table td.p-1, .material-table.material-compact .bl_table td.p-1{
    padding: 0 14px !important;
}
.material-table.material-medium .bl_table td.p-0 .input-wrapper input.blinput, .material-table.material-compact .bl_table td.p-0 .input-wrapper input.blinput{
    min-width: min-content;
    width: 100%;
}
.material-table.material-medium .bl_table td.p-0 .input-wrapper, .material-table.material-compact .bl_table td.p-0 .input-wrapper{
    min-width: min-content;
    width: 100%;
}
.material-table{
    background-color: #fff;
    /*border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0,0,0,.12);
    -webkit-overflow-scrolling: touch;*/
}
.search-icon{
    font-size: 20px;
    color: rgba(0, 0, 0, 0.54);
}
.bl_table.sticky_header_table thead th{
   position: sticky;
   top:0px;
   z-index: 1;
   /*min-width: 140px;*/
}
.bl_table.sticky_header_table .dashboard-table-th-tr{
   z-index:1;
   position:relative;
}
.dashboard-table-td-tr{
    border-top: 1px solid rgba(0,0,0,.12) !important;
}
.dashboard-table-td-tr:focus
{
    background-color: var(--secondary) !important;
    color: white !important;
    font-weight: bold;
}
.bl_table.sticky_header_table thead tr th:nth-of-type(1) {
}
.blstcolsearch-td{
    min-width: 120px;
    overflow:visible !important;
}
.icon-color{
    color: rgba(0, 0, 0, 0.54);
}
.container.containerinsidetble{
    padding-top: 20px;
}
.material-table.material-compact .bl_table td .floating-label-wrap.nolabel input {
  height: 24px;
  padding: 0.6em 0.6em 0.2em;
}
.col_search-td .floating-label-wrap{
    padding: 0 !important;
}
.dense-table-wrapper{
    max-height: 520px;
    overflow: auto;
}
.dense-table-wrapper table {
    min-width: 100%;
    border: 0;
    white-space: nowrap;
    border-collapse: collapse;
    table-layout: fixed;
}
.dense-table-wrapper table thead{
  white-space: nowrap;
  border-collapse: collapse;
}
.dense-table-wrapper table thead th{
    font-family: Roboto, sans-serif;
    font-size: .875rem;
    line-height: 1.375rem;
    font-weight: 600;
    letter-spacing: .0071428571em;
    box-sizing: border-box;
    text-align: left;
    padding-right: 16px;
    padding-left: 16px;
    height: 36px;
    /*color: rgba(0,0,0,.87);*/
    white-space: nowrap;
}
.dense-table-wrapper table thead tr{
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(0,0,0,.12);
}
.dense-table-wrapper table tbody tr{
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(0,0,0,.12);
}
.dense-table-wrapper table tbody tr:hover{
    background-color: rgba(0,0,0,.04);
}
.dense-table-wrapper table tbody tr td{
    font-family: Roboto, sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: .0178571429em;
    box-sizing: border-box;
    padding-right: 16px;
    padding-left: 16px;
    height: 32px;
    color: rgba(0,0,0,.87);
}
.md-modal-content .dense-table-wrapper{
    overflow-y: hidden;
    max-height: 100%;
}
.listpage-columns-content input{
    width: 100%;
    border-color: rgba(0,0,0,.25);
    border-width: 1px;
}
.dense-table-wrapper .icon-bar-icon{
    /*padding: 6px 16px;*/
}
.bllookuptr:nth-of-type(odd):hover, .table-striped tbody tr.bllookuptr:nth-of-type(odd):hover{
    background-color: var(--secondary) !important;
    color: white !important;
}
.bllookuptr:nth-of-type(odd):hover td, .table-striped tbody tr.bllookuptr:nth-of-type(odd):hover td{
    color: white !important;
}
.bllookuptr:hover td{
    color: white !important;
}
.filter_unchecked{
    position: relative;
    width: 34px;
}
.md-select-pagination{
    padding: 0;
    font-weight: 400;
    border: 1px solid rgba(0,0,0,.38);
    border-radius: 4px !important;
    font-size: 1rem;
}
@media screen and (max-width: 768px) {
    .form_title_wrapper .title_wrapper h5{
        white-space: nowrap;
    }
    .toolbar-cols{
        padding: 5px 5px 0 5px;
    }
    .tab-pane{
        padding-top: 15px;
    }
    .form_title_wrapper .col{
        flex-basis: auto;
        padding-right: 0;
    }
    .action_wrapper {
        /*justify-content: flex-start;*/
    }
    .action_wrapper i{
        font-size: 1.2rem;
    }
    .action_wrapper .action-button{
        padding: 5px;
        font-size: 1.2rem;
    }
    .pagination_wrapper{
        flex-wrap: wrap;
    }
    .pagination_wrapper a{
        min-width: 22px;
        padding: 5px;
        font-size: .75rem;
    }
    .title_wrapper h5 .nav-item{
        padding-left: 0 !important;
    }
    .title_wrapper i{
        font-size: 1.2rem;
    }
    .filter-wrapper{
        flex-wrap: wrap;
        padding: 10px;
    }
    .paginate_button{
        padding: 0 !important;
    }
    .paginate_button i{
        font-size: 1.2rem;
    }
    .pagination_wrapper .ul-pagintaion li .first:after{
            margin: -4px;
    }
     .pagination_wrapper .ul-pagintaion li .first{
        margin-right: 20px;
     }
    .pagination_wrap{
        padding-top: 10px;
    }
    .filter-wrapper .pagination_wrapper{
        padding-right: 0;
    }
}
.pagination_wrap{
    display: flex;
}
/*Top and bottom scrollbar*/
#doublescroller{
  max-width: max-content;
  overflow-x: auto;
  overflow-y: auto;
  min-width: 100%;
  padding-left: 6px;
}
#scroller_wrapper {
  max-width: max-content;
  overflow-x: auto;
  overflow-y: auto;
  margin-top: 60px;
}
#scroller {
  font-size:10px;
  line-height:10px;
}
#doublescroller .table-striped{
   overflow: unset;
   margin-top: 34px;
}
.tab-content{
   margin-top: 80px;
}
/* Cron Expression */
.input-280 {
  width: 280px !important;
}
.cronGenerateWrapper input[type="radio"], input[type="checkbox"]{
    /*margin-right: 5px;*/
}
.cronGenerateWrapper label{
    margin: 0 5px;
    color: var(--label_color);
}
.cronGenerateWrapper .row{
    margin: 8px 0;
    align-items: center;
}
.cronGenerateWrapper .lookup-content .lookup-table td label{
    position: static;
    max-width: 100%;
    padding: 0;
}
.cronGenerateWrapper .lookup-content .lookup-table td input:focus + label{
    position: static;
    border: none;
    height: auto;
    /*padding: 0 10px 0 0;*/
    color: var(--label_color);
    font-size: 14px;
}
.cronGenerateWrapper .lookup-content .lookup-table td .checkbox-wrapper input[type="checkbox"]{
    width: 18px;
}
.cronGenerateWrapper .lookup-content .lookup-table td .checkbox-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}
.aside-formlookup.cron-aside-formlookup{
   position:absolute !important;
   left:-30%;
   top:30px;
   width:auto;
}
.cron-dropdown{
   border-bottom: 1px solid rgba(0, 0, 0, 0.42);
}
.cron-dropdown .form-control::after{
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    content: '';
    height: 0;
    width: 0;
    color: rgba(0, 0, 0, 0.54);
    position: absolute;
    bottom: 14px;
    right: 8px;
}
.cron-dropdown span{
    border: 0;
}
.blinput-lookup{
    width: 100%;
}
label.field .psuedo_select.search.subtable-search{
    position: relative;
    height: 36px;
}
.subtable-search .search-icon{
    position: absolute;
    top: 10px;
    left: 0;
}
.subtable-search .col_search{
    width: 100%;
    position: absolute;
    top: 0;
    left: 20px;
}
label.field .psuedo_select.subtable-search::after{
    top:16px;
}
.chinput_label{
    margin-left: 32px;
    margin-top: 4px;
    color: var(--label_color) !important;
}

.form-config-box
{
    display: -webkit-box;
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid rgba(0,0,0,.38);
    border-radius: 4px !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.form-config-box-container
{
    padding: 10px;
}
.font-config-child
{
    font-weight: 600;
    font-size: 1.2rem;
}
.font-config-child-box
{
    font-size: 1rem;
    font-weight: 400;
    border: 1px solid rgba(0,0,0,.38);
    border-radius: 4px !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.lookup-table tbody tr.border-0:nth-of-type(odd):hover{
    background-color: transparent !important;
}
.lookup-table tbody tr.border-0:hover{
    background-color: transparent !important;
}
/*.ec-wgt-chart-container
{
    *//* border: 1px dashed green; *//*
    border: 1px solid rgb(231, 231, 231);
    box-shadow: 0px 0px 5px 0px rgb(188 188 188);
    padding: 5px;
    width: 100%;
    height: 250px;
}

.ec-table-chart-container {
    *//* border-radius: 3px; *//*
    *//* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px 0px; *//*
    font-size: 13px;
    padding: 20px 10px;
    width: 100%;
}

.ec-table-chart-container>div:first-child {
    overflow: auto;
    *//*overflow-x: hidden;*//*
    min-height: 250px;
    max-height: 250px;
    min-width: 250px;
    *//* max-width: 850px; *//*
    width: 100%;
    height: 100%;
    *//* padding: 0px 10px; *//*
    *//* border: 1px solid #e2e2e2; *//*
}




.ec-chart-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.ec-table-search
{
    max-width: fit-content;
}

.ec-table-search > input
{
    border: 1px solid #dddddd;
    border-radius: 2px;
    padding: 2px 5px;
    margin-top: 2px;
    box-sizing: border-box;
    width: 100%;
}

.ec-chart-table>tr>th {
    font-size: 13px;
    text-transform: uppercase;
    padding: 8px 5px 6px;
    text-align: left;
    border-bottom: 1px solid rgb(214, 214, 214);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px 0px;
    *//* box-shadow: inset 0 1px 0 red, inset 0 -2px 0 red; *//*
}

.ec-chart-table > tr:nth-child(2) > th
{
    padding: 0px;
    position: sticky;
    top: 0;
}

.ec-chart-table>tr:first-child {
    position: sticky;
    top: 0;
    background-color: #FFF;
}

.ec-chart-table>tr:nth-child(even)
{
    background-color: #f8f8f8;
}

.ec-chart-table>tr>td {
    text-align: left;
    padding: 6px 10px;
    max-width: 150px;
}

.ec-chart-table>tr:hover {
    background-color: rgb(196, 196, 196);
    cursor: pointer;
}

.ec-chart-table>tr:first-child {
    background-color: #FFF;
}

.ec-table-footer-container {
    border-top: 1px solid rgb(214, 214, 214);
    padding: 8px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.ec-table-page-container
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ec-table-page-nav
{
    padding: 3px;
    border: 1px solid #f8f8f8;
    border-radius: 3px;
}*/
/*-----------------------------------------------------------------*/
.user-settings-content{
    padding: 15px 0;
}
.usersettings-icon{
    display: flex !important;
}
.sidemenubar.sidemenubar-right {
    right: -420px;
    left: auto;
    transition: right 1.5s ease,left 1.5s ease,bottom 1.5s ease,top 1.5s ease;
}
.sidemenubar.sidemenubar-right.sidemenubar-on {
    -webkit-transition: right 0.5s ease,left 1s ease,bottom 1s ease,top 1s ease;
    transition: right 0.5s ease,left 1.5s ease,bottom 1.5s ease,top 1.5s ease;
    box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12)
    border-left: 1px solid #f2f2f2;
    right: 0;
    left: auto;

}
.sidemenubar {
    background: #fff;
    box-shadow: 0 1px 9px -3px rgba(0,0,0,.25);
    z-index: 1001;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -360px;
    width: 420px;
}
.sidemenubar-overlay {
    background: rgba(0,0,0,.3);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 1000;
    -webkit-animation: animation-offcanvas-fade-in .6s ease 1;
    animation: animation-offcanvas-fade-in .6s ease 1;
}
.navigation-body{
  overflow-y: auto;
  height: 90%;
  overflow-x: hidden;
}
.navigation-footer{
  padding-top: 5px;
  border-top: 1px solid #f2f2f2;
  width: 100%;
}
.footer-content{
  float: right;
  padding-right: 15px;
}
.sidebar-tabs{
  display: inline-flex;
  overflow: hidden;
  width: 100%;
  list-style-type: none;
  text-align: center;
  height: 48px;
  padding: 0;
  background: var(--quaternary);
  color: #b3b3b3;
  font-size: 14px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  margin-bottom: 0;
}
.sidebar-tabs li{
   width: 50%;
   margin: auto;
   height: 100%;
   padding-top: 10px;
   padding-bottom: 20px;
}
.sidebar-tabs li:hover{
   cursor: pointer;
}
.sidebar-tabs .active{
  color: #fff;
  border-bottom: 2px solid yellow;
}
.expansionmodal{
  height: 48px;
  padding-left: 24px;
  padding-top: 10px;
  padding-right: 24px;
  border-bottom: 1px solid #f2f2f2;
  color: rgba(0,0,0,.6);
}
.expansionmodal_button{
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 15px;
}
.expansionmodal_button i{
  float: right;
}
.expand-modal.expandmodal-opened .expansionmodal i{
  transform: rotate(-180deg);
  transition-property: transform;
  transition-duration: 0.3s;
}
.expand-modal .expansionmodal i{
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
}
.expand-modal .expansionmodal-content{
  display: none;
}
.expand-modal.expandmodal-opened .expansionmodal-content{
  display: block;
  transition-property: display;
  transition-duration: 0.8s;
  border-bottom: 1px solid #f2f2f2;
}
.expansionmodal-content .list ul{
    padding:8px 16px;
}
.expansionmodal-content .list ul li{
  list-style-type: none;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  height: 35px;
  display: flex;
  position: relative;
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui,);
  font-size: 13px;
}
.expansionmodal-content .list ul li span{
   padding: 7px;
}
.themes{
    display: flex;
    padding: 8px 16px;
}
.themes .themecolorbox{
   padding-left: 40px;
}
.themes .themecolorbox input[type="color"]{
  border: none;
  padding:0;
  height: 24px;
  width: 24px;
  margin-left: 10px;
}
.themelabel{
    font-size: 13px;
    color: #696565;
    padding-left: 10px;
}
.material-checkbox .themelabel{
    padding-left: 0px;
}
.expansionmodal-content input[type="radio"]{
  width: 24px;
  height: 24px;
}
.customtheme{
    padding: 0 0 5px 15px;
    font-size: 12px;
}
.labeledinputsel{
  display: flex;
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui,);
  font-size: 13px;
  line-height: 1.5;
}
.labeledinputsel .label{
  display: flex;
  padding: 8px 16px;
}
.labeledinputsel .label span{
  padding-top: 5px;
  padding-left:3px;
}
.expansionmodal-content .content{
  padding: 8px 30px;
}
.expansionmodal-content .content .material-checkbox > span::after {
  padding-left: 10px;
  left: 0px;
  margin-left: 2px;
}
.expansionmodal-content .list{
  padding-left:15px;
}
.expansionmodal:focus
{
    background: #f2f5f6;
}
/*

.contents > li:nth-child(2n) {
  background: #e9ecef;
}

.contents > li:nth-child(2n+1) {
  background: none;
}

.contents.folder > li:nth-child(2n) {
  background: white;
}

.contents.folder > li:nth-child(2n+1) {
  background:  #e9ecef;
}*/




.switch-button {
  margin: 10px 0;
}
.switch-button-control {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.switch-button-control .switch-button {
  height: 1.6em;
  width: calc(1.6em * 2);
  border: 2px solid var(--primary);
  box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.33);
  border-radius: 1.6em;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.switch-button-control .switch-button .button {
  height: calc( 1.6em - (2 * 2px) );
  width: calc( 1.6em - (2 * 2px) );
  border: 2px solid var(--primary);
  border-radius: calc( 1.6em - (2 * 2px) );
  background: var(--primary);
  transition: all 0.3s ease-in-out;
}
.switch-button-control .switch-button.enabled {
  background-color: var(--primary);
  box-shadow: none;
}
.switch-button-control .switch-button.enabled .button {
  background: white;
  transform: translateX(calc(calc( 1.6em - (2 * 2px) ) + (2 *2px)));
}
.switch-button-control .switch-button-label {
  margin-left: 10px;
  max-width: calc(100% - 40px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  width: auto;
  padding-right: 10px;
  color: var(--label_color);
  font-size: 14px;
  margin-bottom: 0;
}
.formcode_icon i, .colored-icon{
    fill: var(--quaternary);
    color: var(--quaternary);
}
.formcode_icon{
    padding: 0 5px;
}

/*loader*/
.model-Overlay {
    position: relative;
    height: 100%;
    z-index: 800;
    top: 0;
    left: 0;
    right: 0;
    //background-color: rgba(0, 0, 0, 0.25);
    overflow-x: hidden;
    user-select: none;
    text-align: center;
}

.model-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid var(--primary);
  border-right: 5px solid var(--primary);
  border-bottom: 5px solid var(--primary);
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/*.bllist-favs-show
{
    position: relative;
}*/
.bllist-favs-tr td:first-child{
    position: relative;
    /*overflow: unset;*/
}
.bllist-favs
{
    color: #e5110c9c;
    position: absolute;
    left: -10px;
    top: 15px;
    font-size: 20px;
}
.dashboard-table-sec .br-4{
    border: 0;
}
#list_tab{
    border: 1px solid rgba(0,0,0,.12);
}
#list_tab:focus
{
    border: 2px solid var(--focus_color);
}

#doublescroller #list_tab{
    margin-top: -30px;
}
.blquery-icon{
    padding: 5px;
    top: 2px;
}
.blquery-icon-dropdown{
    top: 0px !important;
    left: 0px !important;
}
.blquery-icon-dropdown .dropdown-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 48px;
}
.blquery-icon-dropdown-item-label{
    padding-left: 14px;
}
.divider-solid{
    border-bottom: 1px solid gray;
}
.blquery-icon-dropdown{
    min-width: 280px;
}
.dropdown-item.blquery-not-found{
    display: flex;
    align-items: center;
    color: gray !important;
    height: 5vw;
    cursor: not-allowed;
    justify-content: center;
}
.dropdown-item.blquery-not-found:hover{
    background-color: white !important;
    color: gray !important;
    cursor: not-allowed;
}
.blquery-edit-icon, .dropdown-item span.blquery-edit-icon{
   width: 48px;
   height: 48px;
   padding: 12px;
   font-size: 24px;
   position: relative;
   display: inline-block;
   color: rgba(0, 0, 0, 0.87);
   opacity: 0.5;
}
.blquery-icon-dropdown .dropdown-item:hover .blquery-edit-icon{
    color: #ffffff;
}
.blquery-edit-icon::before, .blquery-edit-icon::after {
    content: "";
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
}
.blquery-edit-icon::before {
    transform: scale(1.71379);
}
.blquery-query-label{
    word-break: break-all;
    white-space: normal !important;
}
.show-modal-overlay + .pagination_wrapper{
    min-width: fit-content;
}
.blquery-icon-dropdown .dropdown-item.divider-solid{
    justify-content: flex-start;
}
.blquerylist_wrapper span{
    padding-left: 10px;
}
.blquery-icon .button-label .notification-badge{
    right: -14px;
    top: -6px;
}
.floating-label-wrap label.link_label{
    color: var(--label_color);
    font-size: 14px;
    padding-left: 5px;
    position: static;
}
.link-text{
    cursor: pointer;
    display: block;
}
.link-text:hover{
    opacity: 0.8;
}
.blsubtabletr .labeloverinput-container .blsearch-wrapper.mb-10{
    margin-bottom: 0 !important;
}
.blsubtabletr .labeloverinput-container .blsearch-wrapper  label.field{
    padding: 16px 0 0 0;
}
.blsubtabletr .labeloverinput-container .blsearch-wrapper  label.field .psuedo_select{
    height: 17px;
    margin: 0;
    padding-top: 0;
}
.blstcolsearch-td label.field .psuedo_select.search, .blstcolsearch-td label.field, .col_search-td label.field{
    border-bottom: none;
}
.summernote_wrapper .col-md-6{
    flex: 1;
}
.summernote_wrapper .col-md-6 table{
    height: 97%;
    width: 100%;
}
.summernote_wrapper .col-md-6 table thead tr{
    background-color: rgb(241 241 241);
    color:rgb(75 80 81);
    text-align:center;
}
.summernote_wrapper .col-md-6 table thead tr th{
    background-color: rgb(241 241 241);
    color:rgb(75 80 81);
    text-align:left;
    padding: 11px;
}
.exp-table-wrapper{
    width:100%;
    border:1px solid grey;
    overflow-y: scroll;
    height: 100%;
}
.exp-table-wrapper table{
    overflow-y: scroll;
}
.exp-table-wrapper table thead tr, .exp-table-wrapper table thead tr th{
    background-color: lightgrey;
    color:black;
    text-align:center;
}
.position-sticky{
    position: sticky;
}
.columnsList_wrapper{
    cursor: pointer;
    overflow-y:scroll
}


 /*document tree menu*/

.tree-menu-container
{
    position: relative;
}

.tree-menu-title
{
    display: flex;
    align-items: center;
    position: relative;
    max-height: 26px;
    user-select: none;
}

.tree-menu-title-content
{
    align-items: center;
    position: relative;
    max-height: 26px;
    user-select: none;
    padding: 1vw;
}

.tree-menu-branch
{
    min-width: 25px;
    min-height: 32px;
    border-bottom: 1px solid grey;
    border-left: 1px solid grey;
    position: absolute;
    left: -14px;
    top: -32px;
    margin-top: 14px;
}

.tree-menu-branch-vertical
{
    height: 110%; /* @TODO */
    border-left: 1px solid grey;
    position: absolute;
}

.tree-menu-nodes-container
{
    margin-top: 10px;
    min-width: 20px;
    position: relative;
}

.vl {
    border-left: 4px solid gray;
    height: 100%;
    position: absolute;
    left: 24%;
    margin-left: -3px;
    top: 0;
}

.doc-title-text
{
    padding: 5px;
    border: 2px solid #eee;
    border-radius: 10px;
    box-shadow: none;
    width: 100%;
}
.help_icon{
    padding: 0 20px 0 0;
    margin-top: 6px;
}
.doc_config_title_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tree-menu-left-container{
    padding-right: 20px;
}
.left-sidebar{
    position: fixed;
    z-index: 2;
    top: 66px;
    bottom: 0;
    left: 0;
    width: 420px;
    padding-top: 20px;
    overflow: auto;
    box-shadow: 0 0.462rem 1.385rem 0 rgb(0 0 0 / 18%);
}
.tree-menu-branch-title{
    white-space: nowrap;
    padding: 0 5px;
    display: flex;
    align-items: center;
}
.tree-menu-branch-title:hover,.tree-menu-branch-add:hover,.tree-menu-branch-icon:hover,.tree-menu-branch-collapse-icon:hover, .tree-menu-branch-title:hover .tree-menu-branch-icon{
    color: var(--quaternary);
    cursor: pointer;
}
.tree-menu-branch-collapse-icon{
    z-index: 1; padding: 0 3px ; color: gray;
}
.text-bold{
    font-weight: bold;
}
.tree-menu-branch-icon{
    font-size: 18px; z-index: 1; background-color: #FFF; color: gray;    margin-right: 5px;
}
.tree-menu-branch-add{
    font-size: 18px;
    z-index: 1;
    background-color: #FFF;
    color: gray;
    padding-left: 5px;
}
.right-content-wrapper{
    margin-left: 420px;
    width: calc(100% - 420px);
    padding-top: 60px;
}
.bldoc_config_wrapper{
    display: flex;    padding: 1vw;
}
.note-editor.note-frame, .note-editor.note-airframe{
    /*border: none !important;*/
    margin-left: 0 !important;
}
.note-popover .popover-content>.note-btn-group, .note-editor .note-toolbar>.note-btn-group{
    margin-bottom: 5px;
}
.note-popover .popover-content, .note-editor .note-toolbar{
    padding: 0 5px !important;
}
.form-title-wrapper{
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 0.5rem 1.15rem;
    border-bottom: 1px solid #eceef3;
    position: fixed;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 62px;
    width: 100%;
}
.form-title-wrapper h5{
    margin-bottom: 0;
    color: var(--quaternary);
}
.doc-icon-text{
    padding: 5px;
    margin-bottom: 10px;
}
.doc-icon{
    padding: 5px;
    margin: 5px;
    font-size: 17px;
    color: var(--quaternary);
    border: 0.5px solid transparent;
}
.doc-icon:hover{
    border: 0.5px solid var(--quaternary);
}

#right-click-menu{
    background: #FAFAFA;
    border: 1px solid #BDBDBD;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 250px;
    z-index: 999999;
}

#right-click-menu li {
    border-bottom: 1px solid #E0E0E0;
    margin: 0;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    display: flex;
    align-items: center;
}
#right-click-menu li span{
    margin-right: 12px;
}
#right-click-menu li label{
    margin-bottom: 0;
}
#right-click-menu li label:hover{
    cursor: pointer;
}
#right-click-menu li:last-child {
    border-bottom: none;
}

#right-click-menu li:hover {
    background: #1E88E5;
    color: #FAFAFA;
    cursor: pointer;
}
.bldoc-icon-wrapper{
    display: flex;
    align-items: center;
    margin-left: 50px;

}
.bldropdown-doc-icon .dropdown-item{
   padding: 0.75rem 0.5rem 0.75rem 0.5rem;
   display: block;
   width: 10%;
}
.bldropdown-doc-icon .dropdown-with-icons .material-icons{
    margin-right: 0;
    width: 24px;
    height: 24px;
}
.bldropdown-doc-icon .nav-link{
    background: #1976d2;
    margin-right: 0 !important;
    padding: 6px 10px 6px 16px;
}
.bldropdown-doc-icon .nav-link span, .bldropdown-doc-icon.bldropdown .nav-link .material-icons{
    color: #fff;
    margin-right: 0;
}
.bldropdown-doc-icon .dropdown-with-icons .dropdown-item:hover {
    background-color: #f9f7f7;
}
.bldropdown-doc-icon .dropdown-with-icons .dropdown-item:hover .material-icons{
    color: black;
}
.bldropdoc-icon-wrapper{
    flex-wrap: wrap;
    width: 100%;
    min-width: 400px;
}
.doc-border{
    border: 1px solid #bbb7b7;
}
.subtable #list_tab{
    border: none;
}

.dropdown-wrapper {
  position: relative;
  width: 200px;
  padding: 8px 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-out;
}
.dropdown-wrapper:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #6200ee transparent;
}
.dropdown-wrapper.is-active {
  border-radius: 5px 5px 0 0;
  background: #6300ee;
  box-shadow: none;
  border-bottom: none;
  color: white;
}
.dropdown-wrapper.is-active:after {
  border-color: #ffffff transparent;
  transform: rotate(180deg);
}
.dropdown-wrapper.is-active .dropdown-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  max-height: 400px;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  border-bottom: none;
  list-style: none;
  transition: all 0.3s ease-out;
  max-height: 0;
  overflow: hidden;
  padding: 0;
}
.dropdown-list li {
  padding: 0 10px;
}
.dropdown-list li:hover a {
  color: #6300ee;
}
.dropdown-list li:last-of-type a {
  border: none;
}
.dropdown-list a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 10px 0;
  transition: all 0.3s ease-out;
  border-bottom: 1px solid #e6e8ea;
}


i .material-icons-outlined
{
    cursor: pointer;
}
.tox-tinymce, .summernote_wrapper .col-md-6 table thead th{
    z-index: 0;
}
.form-control:disabled, .form-control[readonly]{
   cursor: default;
}