body {
    font-family: 'Roboto', sans-serif;
}
.skin-blue .main-header .navbar {
    background-color: #5a9c71!important;
}

.pattibgclr {
    background-color: #a44a2f;
    color:white;
}

.defltbtnclr {
    background-color:#5a9c71 !important;
    color:white;
}
/*.btn {*/
/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*    border-bottom-width: 3px;*/
/*    padding: 5px 12px;*/
/*}*/
thead {
    background-color: #4558a7;
    color: white;
}
.main-footer {
    text-align: center;
    background: #151e28;
    color: white;
    border-top-color: #0a0a0a;
}
.top-header {
    background-color: white;
}
.company-heading {
    text-align: center;
}
.company-heading h1 {
    color: #102c3c;
    margin-top: 33px;
}
.export-btn {
    margin-top: 18px;
    margin-left: 460px;
}
.req-msg{
    color:red;
}
.disnone{
    display: none;
}

.footer-right-side-filter {
    float: right;
    margin-right: 10px;
}


/* MATERIAL BUTTON */
.btn-material {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    border-radius: 0px;
    padding: 0 16px;
    min-width: 64px;
    height: 33px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    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-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.btn-material::-moz-focus-inner {
    border: none;
}

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

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

/* Hover, Focus */
.btn-material:hover,
.btn-material: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);
    color: white;
}

.btn-material:hover::before {
    opacity: 0.08;
    color: white;
}

.btn-material:focus::before {
    opacity: 0.24;
    color: white;
}

.btn:hover:focus::before {
    opacity: 0.3;
    color: white;
}

/* Active */
.btn-material: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);
    color: white;
}

.btn-material:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
    color: white;
}

/* Disabled */
.btn-material:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.btn-material:disabled::before {
    opacity: 0;
}

.btn-material:disabled::after {
    opacity: 0;
}