body {
    font-family: 'Roboto', sans-serif;
}
.skin-blue .main-header .navbar {
    background-color: #337ab7!important;
}
/*.btn {*/
/*    font-size: 14px;*/
/*    text-transform: uppercase;*/
/*    border-bottom-width: 3px;*/
/*    padding: 5px 12px;*/
/*}*/
thead {
    background-color: #008AD2;
    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;
}
.btn-group, .btn-group-vertical {
    position: relative;
    display: flex;
    vertical-align: middle;
}
/* Login.css */

.logo-heading-box h2 {
    font-size: 23px;
    color: #545555;
    font-weight: 800;
    margin-left: 20px;
}
.top-header.login-top-header {
    background-color: rgb(255 255 255 / 0.9);
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0 20px;
	margin-bottom: 40px;
}
.top-header.login-top-header > .row{
    width:100%;
}
.top-header.login-top-header .logo-two{
    text-align:right;
}
.top-header.login-top-header .company-heading h2 {
    padding: 15px 0;
    font-size: 29px;
    color: #459b4b;
    font-weight: 700;
    background: #f6fff1;
    border-radius: 45px;
    margin: 0;
}
.top-header.login-top-header .logo-two img{
    margin: 8px 0;
}
body.authentication-bg {
    background: url(../images/bg-light-img.jpg);
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
}
body.authentication-bg:before {
    content: '';
    background: linear-gradient(45deg, rgb(55 68 111 / 79%), rgb(200 58 77 / 82%));
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
body.authentication-bg a {
    color: #a3a3a3;
}
body.authentication-bg a:hover, body.authentication-bg a:active, body.authentication-bg a:focus {
    outline: none;
    text-decoration: none;
    color: #c2e0f3;
}
body.authentication-bg form a:hover, body.authentication-bg form a:active, body.authentication-bg form a:focus {
    color: #074367;
}
body.authentication-bg .skin-blue .wrapper {
    background-color: transparent;
}
body.authentication-bg .main-footer {
    text-align: left;
    background: #282828;
    color: #ffffff;
    border-top-color: #2c1f32;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
}
body.authentication-bg .container.login-container {
    max-width: 960px;
    margin-bottom: 15px;
    padding: 60px 0;
}
body.authentication-bg .card.login .card-body .login-logo h3{
    font-size: 22px;
    font-weight: 700;
    color: #4d4d4d;
    padding: 20px 0;
    padding-bottom: 15px;
    margin: 0;
    border-radius: 50px;
}
body.authentication-bg .card.login .card-body .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}
body.authentication-bg .card.login {
    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;
    min-width: 0;
    word-wrap: break-word;
    background: rgb(255 255 255 / 56%);
    background-clip: border-box;
    margin-top: .5rem!important;
    margin-bottom: 0rem!important;
    border-radius: .35rem;
    webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    border: none;
    overflow: hidden;
}

body.authentication-bg .card.login .card-body {
    padding: 25px;
}
body.authentication-bg .card.login .login-background {
    background-position: center;
    display: flex;
    background-size: cover;
    padding: 25px;
    position: relative;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    background: rgb(0 92 159 / 63%);
	background:url(../images/login.jpg);
	    background-size: cover;
		z-index:0;
		overflow:hidden;
}
body.authentication-bg .card.login .login-background:before {
    content: '';
   background:linear-gradient(45deg, rgb(51 114 152 / 77%), rgb(9 28 40 / 83%));
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	position:absolute;
}
body.authentication-bg .card.login .login-background h2{
    text-align: center;
    color: #fff;
    line-height: 56px;
    margin-bottom: 0px;
}
body.authentication-bg .card.login .login-background p {
    font-size: 20px;
    color: #fff;
    margin-top: 4px;
    text-transform: uppercase;
	text-align: center;
}
body.authentication-bg .card.login .login-background h2 span{
    display: block;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
	    font-size: 50px;
		    margin-bottom: 15px;
}
body.authentication-bg .card.login .login-background form{
    border: 1px solid #15790b;
    width: 100%;
    text-align: center;
    padding: 47px 10px;
    border-radius: 10px;
}

body.authentication-bg .card.login .login-background form h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #f0f1f0;
}
body.authentication-bg .card.login .login-background .input-group input {
    padding: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
body.authentication-bg .card.login .login-background .input-group button {
    padding: 10px 25px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #17800c;
    color: #fff;
    border-color: #17800c;
    transition:all .3s ease-in-out;
}
body.authentication-bg .card.login .login-background .input-group button:active, .card.login .login-background .input-group button:focus{
    outline:none;
    box-shadow:none;
}
body.authentication-bg .card.login .login-background .input-group button:hover{
    background: #f3b018;
    border-color: #f3b018;
}
body.authentication-bg .card.login .main-login-box {
    background: rgb(255 255 255 / 80%);
    padding: 20px 50px 20px 50px;
    text-align: center;
}
body.authentication-bg .card.login .main-login-box input {
    border-radius: 30px;
    padding: 25px 28px;
}
body.authentication-bg .card.login .main-login-box .form-control-feedback {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 55px;
    text-align: center;
    pointer-events: none;
    color: #d8a3aa;
}
body.authentication-bg .card.login .main-login-box button[type="submit"] {
    border-radius: 30px;
    padding: 16px 28px;
    background: #49547b;
    border-color: #49547b;
    transition:all .3s ease-in-out;
	position:relative;
	overflow:hidden;
	    z-index: 0;
}
body.authentication-bg .card.login .main-login-box button[type="submit"]:active, body.authentication-bg .card.login .main-login-box button[type="submit"]:focus{
    outline:none;
    box-shadow:none;
}
body.authentication-bg .card.login .main-login-box button[type="submit"]:hover {
    background: #0b3950;
    border-color: #0b3950;
}
body.authentication-bg .card.login .main-login-box button[type="submit"]:after {
    background: linear-gradient(45deg, #c73649, #36436f);
    border-color: #2d3b41;
    border-color: #94ca41;
	z-index:1;
	content:'';
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:-100%;
	transition:all.3s ease-in-out;
	z-index: -1;
}
body.authentication-bg .card.login .main-login-box button[type="submit"]:hover:after {
	left:0;
}
@media only screen and (max-width:991px){
    body.authentication-bg .top-header.login-top-header .company-heading h2 {
        padding: 10px;
        font-size: 29px;
        color: #459b4b;
        font-weight: 700;
        background: none;
        border-radius: 0;
        margin: 4px;
        margin-top: 68px;
        text-align: center;
        display: block;
        background: #f6fff1;
    }
    body.authentication-bg .card.login .login-background h2 {
        line-height: 28px;
        margin-bottom: 18px;
        font-size: 20px;
    }
    body.authentication-bg .card.login .login-background {
        padding: 0 25px;
    }
    body.authentication-bg .top-header.login-top-header > .row {
        margin: 0;
    }
    body.authentication-bg .top-header.login-top-header .logo-two img {
        margin: 8px 0;
        max-width: 152px;
        padding: 10px;
        height: auto;
    }
   body.authentication-bg .card.login .card-body .row {
        display: block;
    }
    body.authentication-bg .card.login .login-background form {
        padding: 15px 10px;
    }
    body.authentication-bg .main-footer {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}
body.authentication-bg.skin-blue .wrapper, body.authentication-bg.skin-blue .main-sidebar, .skin-blue .left-side {
    background-color: transparent;
}
/* End Login Page */

@media (min-width:991px){
    .top-header > .row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0px 0;
        align-items: center;
    }
}



    .p-color {
        color: #d84035;
    }
    .f-color {
        color: #b5db21;
    }
    .i-color {
        color: #0094d8;
    }
    .a-color {
        color: #fdb842;

    }
	.table, th, td {
  border:1px solid black;
}
fieldset {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000;
            box-shadow:  0px 0px 0px 0px #000;
}
legend {
    display: inline-block;
    width: auto;
    padding: 0;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}
table.tb-padding td {
    /* padding: 1px; */
    height: 39px;
}
label.unstyled {
    border-radius: 0px;
    width: 100%;
    border: none;
    outline: 0;
    box-shadow: none;
    padding: 7.5px;
}
@media (max-width:991px){
	.pl-0, .pr-0{
		padding-left:0px;
		padding-right:0px;
		
	}
	.mb-1{
		margin-bottom:15px;
	}
}
.form-control1 {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
	text-align: center;
    background-color: #eee;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.box-header1 {
    margin-bottom: 15px !important;
}
.box-border {
    border: 1px solid #d8d0d0;
    background: #fff;
    display: block;
	padding: 0;
    margin: 0;
	margin-bottom:20px;
}
.box-border > .box-title1 {
    color: white;
    background: #71abdd;
	margin-top:0px
    
}
.box-border .box-data{
	padding:20px;
	padding-top: 15px;
}
.box-border .box-data .box {
    box-shadow: 0 1px 8px rgb(0 0 0 / 18%);
}